问题:
在运行时面临降级 chrome 驱动程序版本的问题。
背景:
使用 chrome + Docan(需要 v2.33 的 chrome 驱动程序)对应用程序进行自动化测试。
首先,使用驱动版本:91.0.4472.124 启动 chrome。然后,切换到需要 2.33 版 chrome 驱动程序的 Docan。
代码:
WebDriverManager webDriverManager = null;
Initial:
webDriverManager = WebDriverManager.chromedriver();
Switch:
WebDriverManager.chromedriver().clearResolutionCache();
webDriverManager = WebDriverManager.chromedriver().driverVersion("2.33");
webdriver.avoidBrowserDetection();
行为:
切换后:
System.getProperty("webdriver.chrome.driver") --> 2.33 版本的返回路径
在日志中:
我可以看到 chromedriver 版本仍然是 91
界面动作:
Docan 不完全支持单击等操作。(如果驱动程序是 2.33,它支持很好,尝试使用 IE + Docan)
有什么建议让它发挥作用吗?