package com.guoyasoft.gyautotest.ui.testCase.ycy;
import com.guoyasoft.gyautotest.ui.common.BaseUI;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.annotations.Test;
public class HouTai extends BaseUI{
@Test
public void zhixing (){
//打开页面
driver.get("https://yulegh.github.io/vue-element-test/index.html");
//点击菜单栏组件
driver.findElement(By.xpath("//div[contains(text(),'组件')]")).click();
//点击双向绑定
driver.findElement(By.xpath("//li[contains(text(),'双向绑定')]")).click();
//切换
driver.switchTo().frame(driver.findElement(By.xpath("//iframe[@src='component/demoDataBindTwoWay.html']")));
//点击输入框
driver.findElement(By.xpath("//input[@id='val1']")).click();
//输值
driver.findElement(By.xpath("//input[@id='val1']")).sendKeys("asd");
//点击,点击打印
driver.findElement(By.xpath("//button[contains(text(),'点击打印')]")).click();
//点击弹窗确定
driver.switchTo().alert().accept();
//切换回默认页面
driver.switchTo().defaultContent();
//点击table
driver.findElement(By.xpath("//div[contains(text(),'Table')]")).click();
}
@Test
public void denglu(){
//打开网址
driver.get("http://blog.gdfengshuo.com/example/work/#/login");
sleep(1);
//点击登录
driver.findElement(By.xpath("//span[text()='登录']")).click();
sleep(2);
//点击菜单栏
driver.findElement(By.xpath("//div[@class='collapse-btn']")).click();
sleep(1);
//点击基础表格
driver.findElement(By.xpath("//span[text()='基础表格']")).click();
sleep(2);
//点击第三个编辑按钮
driver.findElement(By.xpath("(//span[text()='编辑'])[3]")).click();
sleep(2);
//清除
driver.findElement(By.xpath("(//input[@type='text'])[5]")).clear();
//输入地址
driver.findElement(By.xpath("(//input[@type='text'])[5]")).sendKeys("河南省平顶山市");
sleep(1);
//点击确定
driver.findElement(By.xpath("//span[text()='确 定']")).click();
//创建鼠标属性的方法
Actions action=new Actions(driver);
//获取 moveToElement方法,元素定位到想要移动的元素上去
action.moveToElement(driver.findElement(By.xpath("//div/a/i"))).perform();
sleep(1);
//判断未读消息,提示是否出现
WebElement element = (new WebDriverWait(driver,5))
.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//div[contains(text(),'未读消息')]")));
sleep(2);
}
@Test
public void gundong(){
driver.get("http://blog.gdfengshuo.com/example/work/#/login");
sleep(1);
//点击登录
driver.findElement(By.xpath("//span[text()='登录']")).click();
sleep(2);
//点击菜单栏
driver.findElement(By.xpath("//div[@class='collapse-btn']")).click();
sleep(1);
//定位自定义图标
driver.findElement(By.xpath("(//span[contains(text(),'自定义图标')])[1]")).click();
//定位文本框
driver.findElement(By.xpath("//div[@class='content']"));
sleep(1);
//点击pic
//元素滚动到固定位置
JavascriptExecutor js=(JavascriptExecutor)driver;
js.executeScript("arguments[0].scrollIntoView(true)",driver.findElement(By.xpath("//div/i[@class='el-icon-lx-cart']")));
sleep(3);
//向下滚动到底
JavascriptExecutor jz = (JavascriptExecutor)driver;
js.executeScript("scrollTo(0,10000)");
sleep(1);
2018-12-23 java界面自动化
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 一、testNG TestNG是Java中的一个测试框架。Java中已经有一个JUnit的测试框架了。 Test...
- 一、访问界面,手工测试 输入访问地址 测试界面功能 二、写自动化测试用例 整理测试功能点 编写测试用例 三、写自动...
- 初识java那篇文章里我说类库(library)是包含了开发人员已经开发好的模块,到时候你直接用就行了。你不用自己...
- 这篇文章讨论等待和同步的问题。过去我举例子总是用java自带的线程类Thread调用静态方法sleep()来让程序...
- 中信国安社区(智能社区建设)六大板块: 社区物业——社区购物——社区生活——社区空间——社区政务——社区信息 面向...