gpt4 book ai didi

java - 如何更改 Firefox WebDriver 端口

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

这只是一个好奇,我如何才能在不同的端口上运行 Firefox 驱动程序,例如 IE 和 Chrome 驱动程序。此驱动程序有类似的选项

ChromeDriverService service=new ChromeDriverService.Builder().usingPort(7000).
usingDriverExecutable(new File("")).build();

尽管 Firefox 驱动程序有类似的选项

System.setProperty("webdriver.firefox.port","7046");

DesiredCapabilities cap=new DesiredCapabilities();
cap.setCapability("webdriver_firefox_port",7046);

但它无法在此端口上运行 firefox 驱动程序我正在使用 2.41 Selenium Webdriver 和 firefox 31

任何人都可以解释为什么以及如何在指定端口运行 Firefox 驱动程序。

最佳答案

嗯,不确定,但这应该可行

ProfilesIni allProfiles = new ProfilesIni();
FirefoxProfile profile = allProfiles.getProfile("WebDriver");
profile.setPreference(FirefoxProfile.PORT_PREFERENCE, 7046)
WebDriver driver = new FirefoxDriver(profile);

关于java - 如何更改 Firefox WebDriver 端口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25491577/

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