我正在使用Appium在Chrome for Android上测试我的网站。 我想为Chrome for Android添加一些选项,例如隐身模式以及禁用缓存的可能性。我尝试使用以下示例代码,但它无法正常工作。 Appium可以在我的Android设备上打开Chrome,但它不是隐身模式,因此它不会禁用浏览器的缓存。
这里有我的Python脚本的代码片段:
import appium
from time import sleep
desired_caps = {
'platformName' : 'Android',
'platformVersion' : '7.1.1',
'deviceName' : 'ZX1G423BZQ',
'browserName' : 'Chrome',
'chromeOptions': {'args':['--incognito', '--disable-cache']}
}
driver = appium.webdriver.Remote("http://127.0.0.1:4723/wd/hub", desired_caps)
driver.get("http://www.google.com")
timings = driver.execute_script('return performance.timing')
print(timings)
driver.quit();
我的环境如下:
我不确定我的错误是什么。也许,我没有正确使用chromeOptions参数,但我没有找到正确的方法来利用它。
答案 0 :(得分:2)
Appium Selenium中的移动设备驱动程序实例不支持设置隐身/私密模式的功能