#最大化窗口
webDriver.manage().window().fullscreen();
#向前
webDriver.navigate().back();
/**
多个窗口之间切换
*/
Set<String> windowHandles = webDriver.getWindowHandles();
webDriver.switchTo().window(windowHandles.toArray()[0].toString());
/**
悬停
*/
WebElement tj_settingicon = webDriver.findElement(By.id("s-usersetting-top"));
Actions action =new Actions(webDriver);
方式1:action.clickAndHold(tj_settingicon).perform();
方式2:action.moveToElement(tj_settingicon).perform();
WebElement tj_settingicon = webDriver.findElement(By.id("s-usersetting-top"));
Actions action =new Actions(webDriver);
action.clickAndHold(tj_settingicon).perform();
webDriver.findElement(By.linkText("搜索设置")).click();
System.out.println(webDriver.getWindowHandles().toString());
webDriver.findElement(By.xpath("//*[@id=\"nr_2\"]")).click();
Select select =new Select(webDriver.findElement(By.xpath("//*[@id=\"nr_2\"]")));
select.selectByIndex(0);
frame
嵌套页面,切换子页面
webDriver.switchTo().frame("login_frame");
回到初始页面
webDriver.switchTo().defaultContent();
上传文件
input标签类型,直接sendkey("/aa/bb/cc.txt");
使用第三方工具,执行可执行程序辅助选中。
|