Java + Selenium(五) 常见的元素处理-check

本文详细介绍了使用Java和Selenium进行Web自动化测试时,如何操作和检查多选框元素,包括点击、清除、判断选中状态和验证是否启用的功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

常见的元素处理-check

多选框

  • click
  • clear
  • isSelected
  • isEnable
package com.test.selenium;

import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;

public class ActionSelenium {
	public WebDriver driver;
	
	public void InitDriver(){
		System.setProperty("webdriver.firefox.bin","C:\\Program Files\\Mozilla Firefox\\firefox.exe");
		driver = new FirefoxDriver();
		driver.navigate().to("https://www.imooc.com/user/newlogin");
		driver.manage().window().maximize();
	}
	public void inputBox(){
		driver.findElement(By.name("email")).sendKeys("895236983@qq.com");
		try{
			Thread.sleep(2000);
		}catch(InterruptedException e){
			e.printStackTrace();
		}
		driver.findElement(By.name("email")).clear();
		String s = driver.findElement(By.name("email")).getAttribute("placeholder");
		System.out.println(s);
		driver.findElement(By.name("email")).sendKeys("895236983@qq.com");
		driver.findElement(By.name("password")).sendKeys("sss");
		driver.findElement(By.className("moco-btn-red")).click();
		try{
			Thread.sleep(4000);
		}catch(InterruptedException e){
			e.printStackTrace();
		}
	}
	
	/**
	 * 单选框
	 * 
	 * */
	public void radioBox(){
		driver.get("https://www.imooc.com/user/setprofile");
		driver.findElement(By.className("pull-right")).click();
		//driver.findElement(By.xpath(".//*[@id='profile']/div[4]/div/label[1]")).click();
		List<WebElement> elements = driver.findElements(By.xpath(".//*[@id='profile']/div[4]/div/label//input"));
		System.out.println(elements.size());
		try{
			Thread.sleep(2000);
		}catch(InterruptedException e){
			e.printStackTrace();
		}
		for(WebElement radio:elements){
			boolean flag = radio.isSelected();
			if(flag==false){
				radio.click();
				break;
			}else{
				System.out.println("选中了");
			}
		}
	}
	/**
	 * 复选框
	 * */
	public void checkBox(){
		WebElement check = driver.findElement(By.id("auto-signin"));
		System.out.println("是否选中了呢?" + check.isSelected());
		System.out.println("是否有效?" + check.isEnabled());
		//check.clear();  //不需要使用
		try{
			Thread.sleep(3000);
		}catch(InterruptedException e){
			e.printStackTrace();
		}
		check.click();
	}

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		ActionSelenium as = new ActionSelenium();
		as.InitDriver();
		//as.inputBox();
		//as.radioBox();
		as.checkBox();
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值