Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | None | 0 0
  1.     @Before
  2.     public void setUp() throws Exception {
  3.         FirefoxBinary firefoxBinary = new FirefoxBinary();
  4.         firefoxBinary.addCommandLineOptions("--headless");
  5.         System.setProperty("webdriver.gecko.driver","C:\\geckodriver.exe");
  6.         FirefoxOptions firefoxOptions = new FirefoxOptions();
  7.         firefoxOptions.setBinary(firefoxBinary);
  8.         driver = new FirefoxDriver(firefoxOptions);
  9.         baseUrl = "http://plp.scnsoft.com/login";
  10.         driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement