- 单选按钮RadioButton
- 复选框CheckBox
- 查找元素异常情况汇总:
单选按钮RadioButton
单选按钮也可以通过Click()方法打开
使用网页http://demo.guru99.com/test/radio.html作为练习,如下:
使用radio1.click() 切换到Option1单选按钮;
使用radio2.click() 切换到Option2单选按钮,取消选中Option1 ;
代码如下图所示:
复选框CheckBox
使用click()方法切换复选框的状态:开/关。
如下的代码是使用账户名和密码登陆百度网址,其中可见到下次自动登陆的复选框。
WebElement memberPass1;
memberPass1 = driver.findElement(By.xpath("//*[@id='TANGRAM__PSP_10__memberPass']"));
memberPass.click();
System.out.println("是否选中:" + memberPass.isSelected());
其输出为: “是否选中:False”
isSelected() 方法的作用是:判断复选框是否被勾选。
这里有另外一个例子:Demo主页http://demo.guru99.com/test/radio.html
完整代码如下:
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.*;
public class Form {
public static void main(String[] args) {
// 对象/变量的声明和实例化
System.setProperty("webdriver.chrome.driver","G:\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("http://demo.guru99.com/test/radio.html");
WebElement radio1 = driver.findElement(By.id("vfb-7-1"));
WebElement radio2 = driver.findElement(By.id("vfb-7-2"));
//选择单选按钮Option1
radio1.click();
System.out.println("Radio Button Option 1 Selected");
//Button1未被选中,Button2被选中
radio2.click();
System.out.println("Radio Button Option 2 Selected");
// 选择复选框
WebElement option1 = driver.findElement(By.id("vfb-6-0"));
// 这将切换复选框
option1.click();
// 检查复选框是否已被选中
if (option1.isSelected()) {
System.out.println("Checkbox is Toggled On");
} else {
System.out.println("Checkbox is Toggled Off");
}
//选择复选框并使用isSelected方法
driver.get("http://demo.guru99.com/test/facebook.html");
WebElement chkFBPersist = driver.findElement(By.id("persist_box"));
for (int i=0; i<2; i++) {
chkFBPersist.click ();
System.out.println("Facebook Persists Checkbox Status is - "+chkFBPersist.isSelected());
}
//driver.close();
}
}
查找元素异常情况汇总:
如果在查找元素时遇到NoSuchElementException(),这意味着在WebDriver访问该页面时,该元素不在页面中。
- 使用FireFox中的Firepath或Chrome中的InspectElement(F12)检查定位元素;
- 检查代码中使用的值与Firepath中元素的值是否相同;
- 有些元素的属性动态的;如果发现值不同,并且动态变化,可以考虑使用By.xpath()或By.cssSelector(),这两种方法更可靠,但语法结构更复杂一点;
- 另外,还有可能是等待问题,WebDriver甚至在页面完全加载之前就执行了代码,所以找不到元素,等等。
- 使用隐式或显式等待,在查找定位元素之前;等待详情请参考文章:5-Selenium WebDriver三种等待–隐式等待-显式等待和流畅等待
下表总结了访问上面讨论的每种类型元素的命令:
Element | 命令 | 描述 |
Check Box, Radio Button | click() | 用于切换元素是否选中 |