有人可以告诉我如何在 Java 中使用 webdriver 切换用户代理吗?我在下面尝试过,但出现错误。
FirefoxProfile ffp = new FirefoxProfile();
ffp.setPreference("general.useragent.override",
"Mozilla/5.0 (Windows NT 6.1; rv:15.0) Gecko/20100101 Firefox/15.0");
WebDriver fd = new FirefoxDriver(ffp);