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.
DesiredCapabilities would help you to change user agent.
You can achieve this by calling these methods:
setBrowserName(java.lang.String browserName) setPlatform(Platform platform)setVersion(java.lang.String version)Or
static DesiredCapabilities chrome()static DesiredCapabilities firefox()static DesiredCapabilities iphone()More here.