How can I use setExperimentalOption through Options using FirefoxDriver in Selenium IDE?
问题 ChromeOptions options = new ChromeOptions(); options.setExperimentalOption("useAutomationExtension", false); options.setExperimentalOption("excludeSwitches", Collections.singletonList("enable-automation")); I want to log in to Google using Selenium IDE but Google doesn't allow automation frameworks to log in. However, by using the above options it is possible to log in to Google. The above options are defined for ChromeDriver and I need to define them for FirefoxDriver . How can I do that?