--enable-precise-memory-info无法在移动Chrome上运行

时间:2017-12-21 19:18:10

标签: appium selenium-chromedriver performance-testing mobile-chrome

在:

 chrome://flags

我没找到

--enable-precise-memory-info

尝试运行:

ChromeOptions options = new ChromeOptions();
options.AddArguments("--enable-precise-memory-info");

也没有成功,价值观四舍五入。

甚至可能吗?

如果您需要有关此问题的更多详细信息,请与我们联系

注意:它不仅仅是桌面,移动浏览器浏览!

2 个答案:

答案 0 :(得分:0)

这样做的一种方法是使用adb

adb -s $deviceId shell am start -n com.android.chrome/com.google.android.apps.chrome.Main argv --args='--enable-precise-memory-info'

获取设备ID:

adb devices

但它不会为下一个会话保存标志,如果你试图用SeleniumWebDriver打开它可能应该通过添加DesiredCapabilities ChromeOptions来完成...但它仍然是问题怎么做

答案 1 :(得分:0)

目前是Appium 1.7.1问题。

点击此处的修复进度: https://github.com/appium/appium/issues/9838