2018-12-26

2018-12-26  本文已影响0人  雁_9587
public class Testtime extends BaseUI {
  @DataProvider(name = "data")
  public Object[][]data(){
  //open:用户名,open:密码,断言:网站
    //String[][]list= {{"open", "open", "网站"}, {"test", "test", "网站"}};
    Object[][] list=CSVReader.readCSV("D:\\ghy\\日期控件.csv");
    return (Object[][])list;
  }
  @Test(dataProvider = "data")
  public void Testindex(String data,String time,String expect){
  //打开网页
    driver.get("https://yulegh.github.io/vue-element-test/index.html");
    sleep(1);
  //定位时间控件
    driver.findElement(By.xpath("//div[contains(text(),'时间控件')]")).click();
    sleep(2);
  //定位年月日时分
    driver.findElement(By.xpath("//li[contains(text(),'年月日时分')]")).click();
    sleep(2);
  //定位iframe框
    WebElement iframe = driver.findElement(By.xpath("//iframe"));
    driver.switchTo().frame(iframe);
    driver.findElement(By.xpath("//input[@placeholder=\"选择日期时间\"]")).click();
  //定位选择日期时间
    WebElement rqi=driver.findElement(By.xpath("//input[@placeholder=\"选择日期\"]"));
       rqi.click();
       rqi.clear();
       rqi.sendKeys(data);
       sleep(1);
    WebElement time1=driver.findElement(By.xpath("//input[@placeholder=\"选择时间\"]"));
      time1.click();
      time1.clear();
      time1.sendKeys(time);
      sleep(1);
  //定位打印选择的时间
    driver.findElement(By.xpath("//span[contains(text(),'打印选择的时间')]")).click();
    sleep(2);
  //定位打印区
    WebElement Printing =driver.findElement(By.xpath("//textarea[@class=\"el-textarea__inner\"]"));
  //断言
  //因为使用getpageSource取不到值,只能使用getAttribute("value")取值
     boolean act = Printing.getAttribute("value").contains(expect);
     Assert.assertEquals(act, true);
     sleep(2);

  }

}

image.png

image.png image.png image.png
public class BaseUI {
    public static WebDriver driver;
    public String pageTitle;
    public String pageUrl;

    public BaseUI() {

    }

    public BaseUI(WebDriver driver) {
        this.driver = driver;
    }

    @BeforeClass
    public void before() {
        //打开浏览器
        // 设置环境变量,指定chromedriver的路径
        System.setProperty("webdriver.chrome.driver",
                "src\\test\\resources\\selenium\\driver\\243_69_71\\chromedriver.exe");
        // 设置浏览器的参数
        ChromeOptions options = new ChromeOptions();
        // 最大化浏览器
        options.addArguments("--test-type", "--start-maximized");
        // options.setBinary("C:/XXXXXXX/chrome.exe");
        // 打开浏览器
        driver = new ChromeDriver(options);
        driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);
        sleep(1);


    }

    @Test
    public void openUrl(String url) {
        //打开URL
        driver.get(url);
        sleep(1);

    }


    @AfterClass
    public void after() {
        //关闭浏览器
        sleep(1);
        driver.quit();
    }

    public static void sleep(int seconds) {
        try {
            Thread.sleep(seconds * 1000);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    public static void snapshot(TakesScreenshot drivername, String filename) {
        // this method will take screen shot ,require two parameters ,one is
        // driver name, another is file name

        File scrFile = drivername.getScreenshotAs(OutputType.FILE);
        // Now you can do whatever you need to do with it, for example copy
        // somewhere
        try {
            System.out.println("save snapshot path is:c:/" + filename);
            FileUtils.copyFile(scrFile, new File("c:\\" + filename));
        } catch (IOException e) {
            // TODO Auto-generated catch block
            System.out.println("Can't save screenshot");
            e.printStackTrace();
        } finally {
            System.out.println("screen shot finished");
        }
    }

    /*
     * 在文本框内输入字符
     */
    protected void sendKeys(WebElement element, String text) {
        try {
            if (waiting(element)) {
                element.clear();
                System.out.println("Clean the value if any in "
                        + element.toString() + ".");
                element.sendKeys(text);
                System.out.println("Type value is: " + text + ".");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /*
     * 点击元素,这里指点击鼠标左键
     */
    protected void click(WebElement element) {

        try {

            if (waiting(element)) {
                element.click();
                System.out.println("Element: " + element.toString()
                        + " was clicked.");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

    /*
     * 在文本输入框执行清除操作
     */
    protected void clean(WebElement element) {

        try {
            if (element.isEnabled()) {
                element.clear();
                System.out.println("Element " + element.toString()
                        + " was cleaned.");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

    /*
     * 判断一个页面元素是否显示在当前页面
     */
    protected void verifyElementIsPresent(WebElement element) {

        try {
            if (element.isDisplayed()) {
                System.out.println("This Element " + element.toString().trim()
                        + " is present.");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /*
     * 获取页面的标题
     */
    protected String getCurrentPageTitle() {

        pageTitle = driver.getTitle();
        System.out.println("Current page title is " + pageTitle);
        return pageTitle;
    }

    /*
     * 获取页面的url
     */
    protected String getCurrentPageUrl() {

        pageUrl = driver.getCurrentUrl();
        System.out.println("Current page title is " + pageUrl);
        return pageUrl;
    }

    public void switchToNextWindow() {

        String currentWindow = driver.getWindowHandle();// 获取当前窗口句柄
        Set<String> handles = driver.getWindowHandles();// 获取所有窗口句柄
        System.out.println("当前窗口数量: " + handles.size());
        for (String s : handles) {
            if (currentWindow.endsWith(s)) {
                continue;
            } else {
                try {
                    WebDriver window = driver.switchTo().window(s);// 切换到新窗口
                    System.out
                            .println("new page title is " + window.getTitle());
                    break;
                } catch (Exception e) {
                    System.out.println("法切换到新打开窗口" + e.getMessage());

                }
            }
        }
    }

    public void switchToTitleWindow(String windowTitle) {
        // 将页面上所有的windowshandle放在入set集合当中
        String currentHandle = driver.getWindowHandle();
        Set<String> handles = driver.getWindowHandles();
        for (String s : handles) {
            driver.switchTo().window(s);
            // 判断title是否和handles当前的窗口相同
            if (driver.getTitle().contains(windowTitle)) {
                break;// 如果找到当前窗口就停止查找
            }
        }
    }

    @Test
    public void loginByCookie(String cookieName, String cookieValue) {
        Cookie cookie = driver.manage().getCookieNamed(cookieName);
        driver.manage().deleteCookie(cookie);
        Cookie session = new Cookie(cookieName, cookieValue);
        driver.manage().addCookie(session);
    }

    public void addScreenshot2Allure(String stepName) {
        Allure.addByteAttachmentAsync(stepName, "image/jpeg", new Supplier<byte[]>() {
            @Override
            public byte[] get() {
                return ((TakesScreenshot) driver).getScreenshotAs(OutputType.BYTES);
            }
        });
    }

    /*
    双引号转单引号
     */
    public String doubleMarkToSingleMark(String xpath) {

        xpath = xpath.replace("\"", "'");
        return xpath;
    }
    /*
    执行js脚本
     */
    protected void executeJavaScript(String js){
        JavascriptExecutor jsDriver = (JavascriptExecutor) driver;
        jsDriver.executeScript(js);
    }
    /*
    显示等待判断元素是否显示出来
     */
    protected boolean waiting(WebElement element) {
        WebDriverWait wait = new WebDriverWait(driver, 5);
        return wait.until(new ExpectedCondition<Boolean>() {
            public Boolean apply(WebDriver d) {
                boolean loadcomplete = element.isDisplayed();
                return loadcomplete;
            }
        });
    }


    /*
    执行js,通过xpath修改value属性的值

     */
    public void updateValueByJS(String xpath, String value) {
        try {
            if (waiting(driver.findElement(By.xpath(xpath)))) {
                String js = "var xpath = \"" + doubleMarkToSingleMark(xpath) + "\";var element = document.evaluate(xpath,document,null,XPathResult.ANY_TYPE,null).iterateNext();element.removeAttribute(\"readonly\");element.value='" + value + "';";
                executeJavaScript(js);
            }
        } catch (Exception e) {
            System.out.println("修改value值失败:" + value);
            e.printStackTrace();
        }

    }

    /*
    执行js,通过xpath修改属性的值

     */
    public void updateAttributeByJS(String xpath, String attributeName, String attributeValue) {
        try {
            if (waiting(driver.findElement(By.xpath(xpath)))) {
                String js = "var xpath = \"" + doubleMarkToSingleMark(xpath) + "\";var element = document.evaluate(xpath,document,null,XPathResult.ANY_TYPE,null).iterateNext();element.removeAttribute(\"readonly\");element.setAttribute(\"" + attributeName + "\",\"" + attributeValue + "\");";
                executeJavaScript(js);
            }
        } catch (Exception e) {
            System.out.println("修改属性失败,属性名:" + attributeName + " 属性值:" + attributeValue);
            e.printStackTrace();
        }
    }
    /*
    执行js,通过xpath删除属性

     */
    public void removeAttributeByJS(String xpath, String attributeName) {
        try {
            if (waiting(driver.findElement(By.xpath(xpath)))) {
                String js = "var xpath = \"" + doubleMarkToSingleMark(xpath) + "\";var element = document.evaluate(xpath,document,null,XPathResult.ANY_TYPE,null).iterateNext();element.removeAttribute(\"readonly\");element.removeAttribute(\"" + attributeName + "\");";
                executeJavaScript(js);
            }
        } catch (Exception e) {
            System.out.println("删除属性失败,属性名:" + attributeName);
            e.printStackTrace();
        }
    }


    /*
    操作下拉框,通过value值选择

     */
    public void selectByValue(WebElement element,String value){
        try{
            if(waiting(element)){
                Select select = new Select(element);
                select.selectByValue(value);
                System.out.println("选择选项" + value);
            }
        }catch (Exception e){
            System.out.println("选择失败" + value);
            e.printStackTrace();
        }
    }
    /*
    操作下拉框,通过index选择

     */
    public void selectByIndex(WebElement element,int index){
        try{
            if(waiting(element)){
                Select select = new Select(element);
                select.selectByIndex(index);
                System.out.println("选择第" + index + "个元素");
            }
        }catch (Exception e){
            System.out.println("选择第" + index + "个选项失败");
            e.printStackTrace();
        }
    }
    /*
    操作下拉框,通过可视文本选择

     */
    public void selectByVisibleText(WebElement element,String visibleText){
        try{
            if(waiting(element)){
                Select select = new Select(element);
                select.selectByVisibleText(visibleText);
                System.out.println("选择" + visibleText);
            }
        }catch (Exception e){
            System.out.println("选择" + visibleText + "失败");
            e.printStackTrace();
        }
    }
    //滚动到某元素
    public void scrollToeLEment(WebElement element){
        try{
            if (waiting(element)){
                ((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView();", element);
            }
        }catch (Exception e){
            System.out.print("窗口滚动失败");
            e.printStackTrace();
        }


    }
}

![image.png](https://img.haomeiwen.com/i14417400/3b952275778cf6c3.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<!--自定义内容1:套件名称-->
<suite name="果芽软件-UI测试-url" verbose="1" preserve-order="true">
  <!--自定义内容2:测试模块名称-->
  <test name="一体化测试流程搭建" preserve-order="true">
    <classes>
      <!--自定义内容3:要执行的类-->
      <class name="com.guoyasoft.gyautotest.ui.testCase.CMS.TestCMS">
        <parameter name="url" value="http://blog.gdfengshuo.com/example/work/#/login"></parameter>

        <methods>
          <!--自定义内容4:要执行/排除的方法,以及执行顺序(从上到下)-->
          <include name="testLogin"/>
        </methods>
      </class>
    </classes>
  </test>
</suite>

 @DataProvider(name = "data")
  public Object[][] data(){
    //admin:用户名,admin:密码,断言:后台管理系统
    //String[][] list = {{"admin", "admin", "后台管理系统"}, {"test", "test", "后台管理系统"}}
    //D:\ghy\数据管理.csv:的属性
    Object[][] list= CSVReader.readCSV("D:\\ghy\\数据管理.csv");

    return (Object[][])list;

  }
image.png

  @Test(dataProvider = "data")
  public void testLogin(String userName, String password, String expect) {
    driver.get("http://blog.gdfengshuo.com/example/work/#/login");
    sleep(1);
    WebElement username = driver.findElement(By.xpath("//input[@placeholder=\"username\"]"));
    username.clear();
    username.sendKeys(userName);
    sleep(1);
    WebElement pass = driver.findElement(By.xpath("//input[@placeholder=\"password\"]"));
    pass.clear();
    pass.sendKeys(password);
    driver
        .findElement(By.xpath("//button[@class=\"el-button el-button--primary el-button--small\"]"))
        .click();

    boolean actual = driver.getPageSource().contains(expect);
    Assert.assertEquals(actual, true);

    sleep(2);
  }
}
上一篇下一篇

猜你喜欢

热点阅读