Examples of FirefoxDriver


Examples of org.openqa.selenium.firefox.FirefoxDriver

  @Test
  public void resgisterEmptyTest() {

    // Setup
    //System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");
    WebDriver webDriver = new FirefoxDriver();

    // Exercise
    webDriver.get("http://10.0.55.154:8080/safebuy/registrarAlmacen.html");

    // Verify
    String title = webDriver.getTitle();
    Assert.assertEquals("Dream Live Website Template | Contact :: W3layouts", title);

    // Tear down
    webDriver.close();

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.