Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
Piyush Nayak
Posts : 1
Join date : 2014-06-09

Unable to set safari user agent in webdriver (java) for reponsive view (320x480) Empty Unable to set safari user agent in webdriver (java) for reponsive view (320x480)

Mon Jun 09, 2014 2:22 pm
Hi,
 
can any one help to me to set safari user agent in java for my responsive web application
 
I had did it for firefox and chorme as below, but not able tot set it for safari


 

Fire fox setting

 

FirefoxProfile profile = new FirefoxProfile();

profile.setEnableNativeEvents(true);

profile.addExtension(new File("C:\\Users\\piyush\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\4sm3i8dn.default\\extensions\\{e968fc70-8f95-4ab9-9e79-304de2a71ee1}.xpi"));

profile.setPreference("general.useragent.override", "Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16");

setDriver(new FirefoxDriver(profile));







chrome setting



 
ChromeOptions options = new ChromeOptions();

options.addArguments("--user-agent=-Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_2 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8H7 Safari/6533.18.5");

System.setProperty("webdriver.chrome.driver", "C:\\Users\\piyush\\Downloads\\chromedriver.exe");

setDriver(new ChromeDriver(options));

 

 
Thanks,
Piyush
Back to top
Permissions in this forum:
You cannot reply to topics in this forum