我在Java中使用Selenium通过以下代码在Firefox上加载配置文件(并在之后执行方案):
System.setProperty("webdriver.gecko.driver", "C:\\Programmes\\Maven\\geckodriver.exe");
FirefoxProfile fprofile = new ProfilesIni().getProfile("default-release-1");
FirefoxOptions option = new FirefoxOptions();
option.setProfile(fprofile);
WebDriver driver = new FirefoxDriver(option);
启动方案时,我遇到的问题是JavaScript浏览器变量navigator.webdriver
(表示使用Selenium)是正确的。
我希望浏览器中无法检测到硒的使用。
我找到了很多有关Chrome的答案,但没有找到关于Firefox的答案(加载了Firefox配置文件)。
一个主意?