1.使用Thread.sleep(),这是最笨的方法,但有时候也能用到而且很实用. 2.隐示等待,隐性等待是指当要查找元素,而这个元素没有马上出现时,告诉WebDriver查询Dom一定时间.默认值是0,但是设置之后,这个时间将在WebDriver对象实例整个生命周期都起作用. WebDriver dr = new FirefoxDriver(); dr.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); 3…
(转载) 1.3 打开测试页面 对页面对测试,首先要打开被测试页面的地址(如:http://www.google.com),web driver 提供的get方法可以打开一个页面: // And now use thedriver to visit Google driver.get("http://www.google.com"); 1.4 例子 package org.openqa.selenium.example; import org.openqa.selenium.By;…
Selenium:元素等待的4种方法 1.使用Thread.sleep(),这是最笨的方法,但有时候也能用到而且很实用. 2.隐式等待,隐性等待是指当要查找元素,而这个元素没有马上出现时,告诉WebDriver查询Dom一定时间.默认值是0,但是设置之后,这个时间将在WebDriver对象实例整个生命周期都起作用. WebDriver dr = new FirefoxDriver(); dr.manage().timeouts().implicitlyWait(10, …