目标:掌握3种等待策略,处理动态加载元素
学习内容:
- 等待机制对比
- 鼠标悬停示例
实践任务:
- 测试一个AJAX加载的页面(如:https://demoqa.com/dynamic-properties)
driver.get("https://demoqa.com/dynamic-properties");
WebDriverWait wait = new WebDriverWait(driver,10 );
WebElement enableAfterButton = wait.until(ExpectedConditions.elementToBeClickable(By.id("enableAfter")));
System.out.println("按钮已经变成可点击状态");
enableAfterButton.click();
WebElement colorChangeButton = driver.findElement(By.id("colorChange"));
wait.until(ExpectedConditions.attributeToBe(colorChangeButton, "class", "text-danger"));
System.out.println("按钮颜色已改变");
- 实现文件上传功能(使用send_keys()传文件路径)
ChromeOptions options = new ChromeOptions();
WebDriver driver = new ChromeDriver(options);
driver.get("https://www.baidu.com");
File UploadFile = new File("/Users/joanna/Downloads/sd/image.png");
WebElement carmeral = driver.findElement(By.className("soutu-btn"));
carmeral.click();
WebDriverWait wait = new WebDriverWait(driver, 10);
WebElement fileInput = driver.findElement(By.className("upload-pic"));
fileInput.sendKeys(UploadFile.getAbsolutePath());
System.out.println("文件上传成功");
- 操作百度图片搜索的鼠标悬停效果
List<WebElement> allImages = driver.findElements(By.tagName("img"));
System.out.println("找到的图片总数:" + allImages.size());
for (int i = 0; i < allImages.size(); i++) {
WebElement img = allImages.get(i);
Actions actions = new Actions(driver);
actions.moveToElement(img).perform();
System.out.println("成功悬停在图片上");
Thread.sleep(3000);
break;
}
driver.quit();