Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. DesiredCapabilities caps = new DesiredCapabilities()
  2. caps.setBrowserName("firefox")
  3. caps.setPlatform(Platform.LINUX)
  4. FirefoxOptions options = new FirefoxOptions()
  5. FirefoxProfile profile = new ProfilesIni().getProfile("seluser")
  6. FirefoxOptions.setProfile(profile)
  7. caps = options.addTo(caps)
  8. RemoteWebDriver remoteDriver = new RemoteWebDriver(url, caps)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement