码迷,mamicode.com
首页 > 编程语言 > 详细

Selenium_WebDriver下拉框练习_Java

时间:2015-07-06 19:55:40      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:selenium   webdriver   下拉选择框   java   

下拉选择框是常见的WEB页面元素,一般的下拉框tagName为Select,还是以某财BBS为例,它的下拉框源码如下所示,这个下拉框一开始只显示省份选择,选择完之后才会显示属于该省的城市的选择框。

<select id="resideprovince" class="ps" tabindex="1" onchange="showdistrict(‘residecitybox‘, [‘resideprovince‘, ‘residecity‘, ‘residedist‘, ‘residecommunity‘], 4, 1, ‘reside‘)" name="resideprovince">
<option value="">-省份-</option>
<option value="北京市" did="1">北京市</option>
<option value="天津市" did="2">天津市</option>
<option value="河北省" did="3">河北省</option>
<option value="山西省" did="4">山西省</option>
<option value="内蒙古自治区" did="5">内蒙古自治区</option>
<option value="辽宁省" did="6">辽宁省</option>
<option value="吉林省" did="7">吉林省</option>
<option value="黑龙江省" did="8">黑龙江省</option>

一般来说,有两种方式可以操作这种标准的下拉框:

//用普通定位+click方式处理下拉框
 dr.findElement(By.xpath("//select[@id=‘resideprovince‘]/option[@value=‘浙江省‘]")).click();
//等待两秒,让页面刷新,显示出城市下拉框
Thread.sleep(2000);    dr.findElement(By.xpath("//select[@id=‘residecity‘]/option[@value=‘杭州市‘]")).click();
//用Select方式
Select sProvince = new Select(dr.findElement(By.xpath("//select[@id=‘resideprovince‘]")));
sProvince.selectByValue("浙江省");
Thread.sleep(2000);
Select sCity = new Select(dr.findElement(By.xpath("//select[@id=‘residecity‘]")));
        sCity.selectByValue("杭州市");

以下代码实现功能如下:

  1. 登录BBS
  2. 打开子版块
  3. 关闭左侧导航栏并窗口最大化
  4. 模拟鼠标移动选择搜索条件
  5. 输入关键字搜索
  6. 切换窗口到搜索结果页面
  7. 操作下拉框搜索同城用户
  8. 格式化输出搜索结果

代码块:

package pkg_Selector;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.ui.Select;

import java.util.Iterator;
import java.util.List;
import java.util.Scanner;
import java.util.Set;

/**
 * Created by Sophie on 15/7/6.
 */
public class Selector {
    private WebDriver dr;
    private String url;
    private String account;
    private String pwd;

    public Selector() {
        this.url = "https://www.wacai.com/user/user.action?url=http%3A%2F%2Fbbs.wacai.com%2Fportal.php";
        Scanner input = new Scanner(System.in);
        System.out.println("Please input the account");
        this.account = input.next();
        System.out.println("Please input the password");
        this.pwd = input.next();
        this.dr = new FirefoxDriver();
    }


    public void login( ) throws Exception {
        //登录
        dr.get(url);
        dr.findElement(By.id("account")).clear();
        dr.findElement(By.id("account")).sendKeys(account);
        dr.findElement(By.id("pwd")).clear();
        dr.findElement(By.id("pwd")).sendKeys(pwd);
        dr.findElement(By.id("login-btn")).click();
    }

    public void switchWindow() throws Exception {
        //打开理财规划子版块
        String a = dr.findElement(By.linkText("理财规划")).getAttribute("href");
        //直接用WebDriver.get()方式打开页面,浏览器不会新开页面,省得切换窗口
        dr.get(a);
        dr.manage().window().maximize();
        //然后关闭左侧导航栏
        dr.findElement(By.cssSelector("a.comiis_left_closes")).click();
    }

    public void mouseMove() throws Exception {

        //点开搜索类型下拉框,将鼠标移动到用户上并选择
        Actions act = new Actions(dr);
        WebElement dropDown = dr.findElement(By.cssSelector("a.showmenu.xg1"));
        WebElement user = dr.findElement(By.cssSelector("ul#comiis_twtsc_type_menu>li>a[rel=‘user‘]"));
        act.click(dropDown).perform();
        act.moveToElement(user).click().perform();
        act.moveByOffset(20, 30).click().perform();
    }

    public void search() throws Exception {
        //找到搜索输入框,并输入关键字,然后点击搜索按钮
        WebElement input = dr.findElement(By.id("comiis_twtsc_txt"));
        input.clear();
        input.sendKeys("周杰伦");
        dr.findElement(By.id("comiis_twtsc_btn")).click();//Click之后FireFox新开了一个页面

        //用WindowHandle+页面title来切换dr至我们想要的窗口
        String currentWindow = dr.getWindowHandle();
        Set<String> handles = dr.getWindowHandles();
        //System.out.println(handles.size());
        Iterator h = handles.iterator();
        while (h.hasNext()) {
            dr = dr.switchTo().window((String) h.next());
            //System.out.println(dr.getTitle());
            if (dr.getTitle().equals("查找好友 - 挖财社区"))
                break;
        }
    }

    public WebDriver select() throws InterruptedException {
        dr.findElement(By.cssSelector("html>body#nv_home.pg_spacecp.sour>div#wp.wp.cl>div#ct.ct2_a.wp.cl>div.mn>div.bm.bw0>ul.tb.cl>li:nth-child(2)>a")).click();
        /*用普通定位+click方式处理下拉框
        dr.findElement(By.xpath("//select[@id=‘resideprovince‘]/option[@value=‘浙江省‘]")).click();
        Thread.sleep(2000);
        dr.findElement(By.xpath("//select[@id=‘residecity‘]/option[@value=‘杭州市‘]")).click();
        */
        //用Select方式
        Select sProvince = new Select(dr.findElement(By.xpath("//select[@id=‘resideprovince‘]")));
        sProvince.selectByValue("浙江省");
        Thread.sleep(2000);
        Select sCity = new Select(dr.findElement(By.xpath("//select[@id=‘residecity‘]")));
        sCity.selectByValue("杭州市");
        dr.findElement(By.cssSelector("button.pn")).click();
        return dr;
    }

    public void tearDown(WebDriver dr) throws Exception {
        dr.quit();
    }
    public static void main(String[] args) throws Exception {
        Selector s = new Selector();
        s.login();
        s.switchWindow();
        s.mouseMove();
        s.search();
        WebDriver selectPage = s.select();
        //xpath模糊查找
        List<WebElement> searchResult = selectPage.findElements(By.cssSelector("li.bbda.cl"));
        System.out.println("搜索到" + searchResult.size() + "个同城用户,他们是:");
        System.out.printf("%-20s %-20s %-20s\n", "用户名", "用户等级", "用户积分");
        String userName;
        String userLevel;
        String userMark = "";
        String[] sArray;
        for (int i = 0; i < searchResult.size(); i++) {
            sArray = searchResult.get(i).findElement(By.cssSelector("li>p")).getText().split(" ");
            if (sArray.length < 2)
                userMark = "0";
            else
                userMark = sArray[3];
            userLevel = sArray[0];
            userName = searchResult.get(i).findElement(By.cssSelector("h4>a")).getText();
            System.out.printf("%-20s %-20s %-20s\n",userName,userLevel,userMark);
        }
    }
}

学的越多,越觉得自己懂得少~加油努力准备啊~

版权声明:本文为博主原创文章,未经博主允许不得转载。

Selenium_WebDriver下拉框练习_Java

标签:selenium   webdriver   下拉选择框   java   

原文地址:http://blog.csdn.net/sophie2805/article/details/46777283

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!