我想将FirefoxDriver与Selenium一起使用,但不断被网页检测到。当我添加以下代码
System.setProperty("webdriver.gecko.driver", "../../../../../../../usr/bin/geckodriver");
FirefoxOptions opt = new FirefoxOptions();
opt.setCapability("marionette", false);
driver = new FirefoxDriver(opt);
该网页无法检测到我正在使用geckodriver,但是我无法使用Selenium自动化,这就是我的问题。我需要没有检测的自动化。
问题:
将FirefoxDriver