Java+Selenium——单选按钮操作

Posted 小白龙白龙马

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java+Selenium——单选按钮操作相关的知识,希望对你有一定的参考价值。

package rjcs;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import java.util.Set;

import org.openqa.selenium.interactions.Actions;
import org.apache.commons.io.FileUtils;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebElement;
import org.testng.annotations.Test;
import org.openqa.selenium.*;

import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;

import org.openqa.selenium.OutputType;

import com.thoughtworks.selenium.SeleneseTestNgHelper;

public class ckqhh 
{
    public static void main(String[] args)
    
    {
         System.setProperty("webdriver.firefox.bin","C:\Program Files (x86)\Mozilla Firefox\firefox.exe");    //设置火狐的安装路径,防止系统找不到
            
         FirefoxDriver driver = new FirefoxDriver();        //初始化FireFox浏览器实例,并打开浏览器
         
        try
        {
             driver.manage().window().maximize();         //最大化窗口
             
             Thread.sleep(3000);        
             
             driver.manage().window().maximize();         //最大化窗口
             
             Thread.sleep(3000);


             driver.get("https://www.baidu.com");  
             
             Thread.sleep(1000);
             
             Actions action = new Actions(driver);
             
             action.moveToElement(driver.findElementByLinkText("设置")).perform();     //鼠标悬浮在 设置  元素上面
             
             driver.findElementByClassName("setpref").click();      // 打开搜索设置
             
             Thread.sleep(8000);
             
             
             // 把单选按钮放在一个list里面
             ArrayList<WebElement> search_type = (ArrayList<WebElement>) 
             driver.findElements(By.xpath("//*[@id=‘se-settting-2‘]/*"));
             
             for(WebElement ele : search_type)
             {
                 ele.click();
                 Thread.sleep(5000);
             }

             
             Thread.sleep(5000);
             
        }catch (Exception e) 
        {
            e.printStackTrace();
        }finally 
        {
            driver.quit();
        
         }
   }
    

}

以上是关于Java+Selenium——单选按钮操作的主要内容,如果未能解决你的问题,请参考以下文章

使用 Selenium,如何根据关联标签单击单选按钮

java+selenium+new——操作单选下拉列表——select类

Python Selenium,有没有办法点击单选按钮?我的代码在网站上不起作用

单选按钮以片段形式传递数据

无法单击跨度Selenium Python中的单选按钮

无法单击跨度 Selenium Python 内的单选按钮