有没有一种方法可以通过 MS Edge 的开发人员选项以编程方式切换设备仿真。我目前正在使用 selenium,到目前为止,我可以通过传递
来让 MS Edge 使用开发选项打开--auto-open-devtools-for-tabs
选项。
然而;我不知道如何从那里启用设备仿真工具栏。我注意到热键是 CTRL+SHIFT+M 但每次我使用 selenium (python) 发送这些键时,什么都没有。 Edge 是否有在启动期间自动打开设备仿真模式的选项?
你删除了我的帖子,但我有另一种方式
from selenium import webdriver
mobile_emulation = {"deviceName": "Nexus 5"}
edge_options = webdriver.EdgeOptions()
edge_options.add_experimental_option("mobileEmulation", mobile_emulation)
browser = webdriver.Edge(options=edge_options)
现在我再也不会使用这个糟糕的平台了,多亏了 dharman,
永远再见
疯狂