Python和Selenium移动仿真



我正试图用Selenium仿真和Python来模拟iPhone X的Chrome,如下所示:

from selenium import webdriver
mobile_emulation = { "deviceName": "iphone X" }
chrome_options = webdriver.ChromeOptions()
chrome_options.add_experimental_option("mobileEmulation", mobile_emulation)
driver = webdriver.Chrome(r'C:UsersAlexPythonDevchromedriver')
driver.get('https://www.google.com')

然而,什么也没发生:我的页面仍然是一个普通的浏览器页面,我不认为它是一个移动页面。

我的代码中缺少什么或有什么错误?

您现在可能已经找到了答案,但这里有一个一般的答案:在您的代码示例中,您的驱动程序没有机会知道您希望它模拟另一个设备。以下是完整的工作代码:

from selenium import webdriver
mobile_emulation = { "deviceName": "your device" }
chrome_options = webdriver.ChromeOptions()
chrome_options.add_experimental_option("mobileEmulation", mobile_emulation)
driver = webdriver.Chrome(options=chrome_options) #sometimes you have to insert your execution path
driver.get('https://www.google.com')

请确保Chrome支持您的设备,并且您的设备名称拼写正确。

试试这个。

iphoneX[宽:375,高:812,像素比例:3]。

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
mobile_emulation = {
"deviceMetrics": { "width": 375, "height": 812, "pixelRatio": 3.0 },
"userAgent": "Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 5 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19"
}
chrome_options = Options()
chrome_options.add_experimental_option("mobileEmulation", mobile_emulation)
driver = webdriver.Chrome(
executable_path="../chrome/chromedriver85", options=chrome_options
)
url = "https://google.com/"
driver.get(url)

您需要编写iPhone X,而您编写的iPhone X应该可以修复

相关内容

  • 没有找到相关文章

最新更新