package com.dn.twohomework;

import java.util.ArrayList;

import java.util.Set;
import java.util.List;
// import org.apache.bcel.generic.Select;
 //import org.openqa.selenium.support.ui.Select;
//import org.apache.bcel.generic.Select;
 //import com.sun.org.apache.bcel.internal.generic.Select;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.ui.Select;

import java.util.Iterator;

import com.gargoylesoftware.htmlunit.html.impl.SelectableTextInput;
//import com.gargoylesoftware.htmlunit.javascript.host.Iterator;
//import com.gargoylesoftware.htmlunit.javascript.host.Set;
//import com.sun.media.sound.FFT;
//import com.sun.xml.internal.bind.v2.schemagen.xmlschema.List;
import java.util.HashSet;;

public class keyWord1 {
    private static WebDriver driver;

    // 打开浏览�?
    public void openBrowser(String b, String xpath) {
        if ("cc".equals(b)) {
            
            ChromeDriver chrome = new ChromeDriver("webdriver.chrome.driver", xpath);
            driver = chrome.getdriver();

        } else if ("ff".equals(xpath)) {
            FFDriver ff = new FFDriver("webdriver.gecko.driver", xpath);
            ff.getdriver();
            
        } else if ("ie".equals(b)) {

            IEDriver ie = new IEDriver("webdriver.ie.driver", xpath);
            driver = ie.getdriver();
        }
    }

    public static WebDriver getDriver() {
        return driver;
    }

    public static void setDriver(WebDriver driver) {
        keyWord1.driver = driver;
    }

    // 输入网址
    public void geturl(String url) {
        try {
            driver.get(url);
            

             //ChromeOptions options = new ChromeOptions();
            //options.addArguments("--start-fullscreen");
            //driver.manage().window().maximize();

        } catch (Exception e) {
            // TODO Auto-generated catch block
            System.out.println("打开浏览器失�?");
            e.printStackTrace();
        }
    }

    // 等待时间
    public void sleep(String time) throws NumberFormatException, InterruptedException {

        Thread.sleep(Integer.parseInt(time));
    }

    // 输入内容
    public void input(String xpath, String word) {
        try {
            driver.findElement(By.xpath(xpath)).clear();
            driver.findElement(By.xpath(xpath)).sendKeys(word);
        } catch (Exception e) {
            // TODO Auto-generated catch block
            System.out.println("输入字符串失�?");
            e.printStackTrace();
        }
    }

    // 点击
    public void click(String xpath) {
        try {
            driver.findElement(By.xpath(xpath)).click();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            System.out.println("点击失败");
            e.printStackTrace();
        }

    }

    // 关闭旧浏览器,切换到新窗�?
    public void closeOldWin() {
        List<String> handle = new ArrayList<String>();
        Set<String> s = driver.getWindowHandles();
        // 循环获取数组里的句柄,保存到链表handle里面
        for (Iterator<String> it = s.iterator(); it.hasNext();) {
            handle.add(it.next().toString());

        }

        driver.close();
        driver.switchTo().window(handle.get(1));

    }

    // 关闭新浏览器,切换到旧窗�?
    public void closeNewWin() {
        List<String> handle = new ArrayList<String>();
        Set<String> s = driver.getWindowHandles();
        // 循环获取数组里的句柄,保存到链表handle里面
        for (Iterator<String> it = s.iterator(); it.hasNext();) {
            handle.add(it.next().toString());

        }
        driver.switchTo().window(handle.get(1));

        driver.close();
        driver.switchTo().window(handle.get(0));

    }

    // 进入子页�?
    public void intoIframe(String xpath) {
        try {
            driver.switchTo().frame(driver.findElement(By.xpath(xpath)));
        } catch (Exception e) {
            // TODO Auto-generated catch block
            System.out.println("进入Iframe失败");
            e.printStackTrace();
        }

    }

    // 关闭子页�?
    public void outIframe() {
        driver.switchTo().defaultContent();
    }

    // 获取文字信息
    public void getText(String xpath) {
        System.out.println(driver.findElement(By.xpath(xpath)).getText());
    }

    // hover
    public void hover(String xpath){
        try {
            Actions builder = new Actions(driver);
            builder.moveToElement(driver.findElement(By.xpath(xpath))).build().perform();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            
            e.printStackTrace();
            System.out.println("悬停失败");
        }
    }
    //获取链接link
    public String getLink(String xpath){
        String link = "about:bliank";
        try {
            link = driver.findElement(By.xpath(xpath)).getAttribute("href");
        } catch (Exception e) {
            // TODO Auto-generated catch block
            
            e.printStackTrace();
            System.out.println("获取链接失败");
        }
        return link;
    }
    //提交表单
    public void submit(String xpath){
        try {
            driver.findElement(By.xpath(xpath)).submit();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            System.out.println("提交失败");
            e.printStackTrace();
        }
    }
    //选择下拉框
    public void select(int num,String xpath){
   Select sel = new Select(driver.findElement(By.xpath(xpath)));
   sel.selectByIndex(num);

    }
    //通过js操作
    public void exejs(String text){
        JavascriptExecutor js = (JavascriptExecutor) driver;
        js.executeScript(text);
    }
    //上传图片
    public void uploadpiture(String name,String path){
        try {
            driver.findElement(By.name(name)).sendKeys(path);
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            System.out.println("上传失败");
            
        }
    }
    //获得元素属性的值
    public String GetsTheValueOfTheElement(String xpath,String element){
    try {
        String getvalues =    driver.findElement(By.xpath(xpath)).getAttribute(element);
        return getvalues;
    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
        System.out.println("获取元素属性的值失败");
        return null;
    }
    }
    //点击alert的确认按钮
        public void clickAlert(){
            driver.switchTo().alert().accept();;
        }
}

selenium--关键字驱动的更多相关文章

  1. Selenium关键字驱动测试框架Demo(Java版)

    Selenium关键字驱动测试框架Demo(Java版)http://www.docin.com/p-803493675.html

  2. UI自动化测试框架之Selenium关键字驱动

    一.原理及特点 1. 关键字驱动测试是数据驱动测试的一种改进类型 2. 主要关键字包括三类:被操作对象(Item).操作(Operation)和值(value),用面向对象形式可将其表现为Item.O ...

  3. UI自动化测试框架之Selenium关键字驱动 (转)

    摘要 自动化测试框架demo,用关键字的形式将测试逻辑封装在数据文件中,测试工具解释这些关键字即可对其应用自动化 一.原理及特点 1.   关键字驱动测试是数据驱动测试的一种改进类型 2.    主要 ...

  4. 【转】UI自动化测试框架之Selenium关键字驱动

    原网址:https://my.oschina.net/hellotest/blog/531932#comment-list 摘要: 自动化测试框架demo,用关键字的形式将测试逻辑封装在数据文件中,测 ...

  5. Python&Selenium 关键字驱动测试框架之数据文件解析

    摘要:在关键字驱动测试框架中,除了PO模式以及一些常规Action的封装外,一个很重要的内容就是读写EXCEL,在团队中如何让不会写代码的人也可以进行自动化测试? 我们可以将自动化测试用例按一定的规格 ...

  6. selenium 关键字驱动部分设计思路

    1 说明: 1.以下的代码亲测直接可用, 2.设计思路来自博客园的 张飞_ :http://www.cnblogs.com/zhangfei/p/5330994.html   /   http://w ...

  7. 数据驱动 vs 关键字驱动:对搭建UI自动化测试框架的探索

    UI自动化测试用例剖析 让我们先从分析一端自动化测试案例的代码开始我们的旅程.以下是我之前写的一个自动化测试的小Demo.这个Demo基于Selenium与Java.由于现在Selenium在自动化测 ...

  8. Appium 自动化测试框架:关键字驱动+数据驱动

    1. 关键字驱动框架简介 2. 框架结构说明 3. 框架代码实现 action 包  page_action.py business_process 包 case_process.py data_so ...

  9. UI自动化测试框架:关键字驱动+数据驱动

    1. 关键字驱动框架简介 2. 工程结构说明 3. 工程代码实现 action 包  page_action.py business_process 包 case_process.py data_so ...

  10. java自动化-关键字驱动在junit接口自动化的应用

    本文是继承上文的基础上进行的讨论,建议读者先阅读http://www.cnblogs.com/xuezhezlr/p/9097137.html和https://www.cnblogs.com/xuez ...

随机推荐

  1. 我的第一篇博文:C++最初的路-经典的小游戏走迷宫

    写在开始:这个博客建于大二下学期.2年多的学习,从网上借鉴的大牛经验,代码,指导数不胜数,而其中大部分来自别人的博客,于是期待有一天也能把自己在学习过程中的一些经验拿出来与大家分享. 其实我凝望了C+ ...

  2. 钉钉企业应用C#开发笔记之一(免登)

    关于钉钉 钉钉是阿里推出的企业移动OA平台,本身提供了丰富的通用应用,同时其强大的后台API接入能力让企业接入自主开发的应用成为可能,可以让开发者实现几乎任何需要的功能. 近期因为工作需要研究了一下钉 ...

  3. Java探秘之基本数据类型和包装类(int,Integer)(一)

    最近闲来无聊打算做一个博客网,没事记记笔记什么,可是网站不好做,需要点时间,就先写写笔记来练练手. 可是要写什么呢,太难的好像我也写不出来,万一写错了误导别人就不好了. 哈哈,不多说,直奔主题,要是写 ...

  4. Oracle索引批量重置笔记

    ---单个索引重置语句 alter index indexname  rebuild; ---查询数据索引对象语句 select *  from user_indexes; ------将数据库的索引 ...

  5. C#语法糖演进-C#语言和.NET Framework平台介绍

    p { font-size: 14px; text-indent: 2em } .title { text-indent: 0; font-size: 22px; font-weight: bold; ...

  6. iOS 实现类似QQ分组样式的几种方式

    思路 思路很简单,对模型数据操作或则控制界面显示 先看下json部分数据 "chapterDtoList": [{ "token": null, "i ...

  7. 编写高质量代码改善C#程序的157个建议:第17个建议之多数情况下使用foreach进行循环遍历

    今天是我看<编写高质量代码:改善C#程序的157个建议>第二遍的时候了,看完这本书的确是受益匪浅,学到了很多东西,也明白了很多道理. 里面的代码我每个都调试了一遍,有时候是有些出入的,可能 ...

  8. 大数据Python学习大纲

    最近公司在写一个课程<大数据运维实训课>,分为4个部分,linux实训课.Python开发.hadoop基础知识和项目实战.这门课程主要针对刚从学校毕业的学生去应聘时不会像一个小白菜一样被 ...

  9. 小程序开发教程:wx.setTopBarText(OBJECT)

    状态信息展示 当小程序被显示在聊天顶部时,开发者可将重要的状态变更信息实时展示出来,便于用户及时获知. 详见文档:小程序文档 小程序更新之后,有个更有用的功能!支持状态栏实时状态更新!! wx.set ...

  10. 关于table表格td里内容是数字而且太长不换行的问题

    <p>table{table-layout:fixed}</p><p>table td{word-wrap:break-word}</p><p&g ...