leonelhl

SELENIUM - 2 : HTMLUnitDriver

Mar 19th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. private HtmlUnitDriver driver;
  2.     private StringBuffer verificationErrors = new StringBuffer();
  3.  
  4.     @Before
  5.     public void setUp() throws Exception {
  6.         driver = new HtmlUnitDriver(true);
  7.         driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment