Java+selenium之WebDriver的cookie,等待等高级操作(五)

时间:2023-01-25 04:50:41

1. 操作cookie

 // 增加一个 name = "name",value="value" 的 cookie
Cookie cookie = new Cookie("name", "value");
driver.manage().addCookie(cookie);
// 得到当前页面下所有的 cookies ,并且输出它们的所在域、name、value、有效日期和路径
Set<Cookie> cookies = driver.manage().getCookies();
System.out.println(String.format("Domain -> name -> value -> expiry -> path"));
for(Cookie c : cookies)
System.out.println(String.format("%s -> %s -> %s -> %s -> %s",c.getDomain(), c.getName(), c.getValue(),c.getExpiry(),c.getPath()));
}

  删除 cookie

 // 第一种通过 cookie 的 name
driver.manage().deleteCookieNamed("CookieName");
// 第二种通过 Cookie 对象(Cookie cookie)
driver.manage().deleteCookie(cookie);
// 第三种全部删除
driver.manage().deleteAllCookies();

2. 等待页面元素加载完成

 // (1) 强制等待弊端较多,会造成时间的浪费或者休眠时间不够
Thread.sleep(2000); // (2) 加入循环等待优化
long start = System.currentTimeMillis();
while (true) {
Thread.sleep(500);
if (driver.getTitle().indexOf("期望值") != -1)
break;
if (System.currentTimeMillis() - start >= 10000)
break;
}

  隐形等待,设置全局元素等待超时时间。隐性等待是指当要查找元素,而这个元素没有马上出现时,告诉WebDriver 查询Dom一定时间。默认值是0, 但是设置之后,这个时间将在WebDriver 对象实例整个生命周期都起作用。但这里有一个弊端,那就是程序会在设定的时间内一直等待整个页面加载完成,才会执行下一步,有时候个别JS加载比较慢会比较浪费时间。

 // 设置隐形等待时间10s
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  显性等待,使用ExpectedConditions类中自带方法,可以进行显试等待的判断。只有满足显式等待的条件满足,代码才会继续向后执行,如果超过设定的最大显式等待时间, 这程序会抛出异常。如果同时设置隐性等待和显性等待,取最大等待时间。

 // 设置显性等待时间,最大等待10秒
WebDriverWait wait = new WebDriverWait(driver, 10);
//(1)页面元素是否在页面上可用和可被单击
WebElement we = wait.until(ExpectedConditions.elementToBeClickable(By locator));
//(2)页面元素处于被选中状态
Boolean boolean = wait.until(ExpectedConditions.elementToBeSelected(WebElement element));
//(3)页面元素在页面中存在
WebElement we = wait.until(ExpectedConditions.presenceOfElementLocated(By locator));
//(4)在页面元素中是否包含特定的文本
Boolean boolean = wait.until(ExpectedConditions.textToBePresentInElement(WebElement element, String text));
Boolean boolean = wait.until(ExpectedConditions.textToBePresentInElement(By locator, String text));//弃用
//(5)页面元素值是否出现
Boolean boolean = wait.until(ExpectedConditions.textToBePresentInElementValue(By locator, String text));
Boolean boolean = wait.until(ExpectedConditions.textToBePresentInElementValue(WebElement element, String text));
//(6)标题是否包含text
Boolean boolean = wait.until(ExpectedConditions.titleContains(String title));
//(7)元素可见
WebElement we = wait.until(ExpectedConditions.visibilityOfElementLocated(By locator));
//(8)元素不可见消失
Boolean boolean = wait.until(ExpectedConditions.invisibilityOfElementLocated(By locator));

3. 页面截图

 // 得到截图并保存在C盘下 截取页面全图,不管页面多长
File screenShotFile = ((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
// org.apache.commons.io.FileUtils.copyFile
FileUtils.copyFile(screenShotFile, new File("C:/test.png"));

4. 执行JS脚本

 // 创建JavascriptExecutor对象
JavascriptExecutor js = (JavascriptExecutor) driver;
// 设置日期控件的读写属性
js.executeScript("document.getElementById(\"fromDate\").readOnly=false");
// 直接为日期控件强行赋值
js.executeScript("document.getElementById('id').setAttribute('value','2018-05-10');");