gpt4 book ai didi

firefox - 如何在 Selenium Webdriver 中设置特定的 Firefox 版本?

转载 作者:行者123 更新时间:2023-12-02 02:11:20 26 4
gpt4 key购买 nike

我有正在测试的网络应用程序。我只需要使用 firefox 5 从 Lunix 和 Windows 对其进行测试。那么,如何在仅运行 Firefox 5 而不是 Firefox 6 或 9 的 New FirefoxDriver() 中设置特定的 firefox 版本?我不想设置 firefox 的路径,因为当我们有多个操作系统时,这不是有用的方法。

最佳答案

创建一个 firefox 5 配置文件并在下面给出该配置文件的名称。它将启动给定的配置文件浏览器。

FirefoxProfile profile = new ProfilesIni().getProfile(profileName);
DesiredCapabilities dc = DesiredCapabilities.firefox();
dc.setCapability(FirefoxDriver.PROFILE, profile);
driver = new FirefoxDriver(dc);

引用这个link了解如何创建 Firefox 配置文件。

关于firefox - 如何在 Selenium Webdriver 中设置特定的 Firefox 版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12596097/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com