Can someone pls tell me how to switch the user agent using webdriver in Java? I tried below, but getting errors.
FirefoxProfile ffp = new FirefoxProfile();
ffp.
I believe this solution is the desired answer to the question. I tested it and it worked for me. Happy coding!
FirefoxOptions options = new FirefoxOptions();
String userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36 OPR/60.0.3255.170";
options.addPreference("general.useragent.override",userAgent);
WebDriver webDriver = new FirefoxDriver(options);
webDriver.get("http://whatsmyuseragent.org");