概述
2019独角兽企业重金招聘Python工程师标准>>>
在实际测试项目中,会出现隐式菜单和展示菜单的效果。如下:
点击“菜单用户权限”,才会展示其下方的子菜单,如下:
页面源码如下:
因为菜单相关的操作都要打开菜单管理页面的,所以就创建一个类来方便菜单相关case调用。
从点击“菜单用户权限”开始到打开“菜单管理”页面,处理方法,代码如下:
package com.selenium.yan;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
public class YiiOpenMenu {
public void openmenu(WebDriver driver){
//等待“菜单用户权限”文字链接出现
(new WebDriverWait(driver,40)).until(ExpectedConditions.elementToBeClickable(By.linkText("菜单用户权限")));
//点击"菜单用户权限"菜单
List<WebElement> treelis = driver.findElements(By.cssSelector(".sidebar-menu .treeview"));
WebElement li = treelis.get(0);
WebElement a = li.findElement(By.cssSelector("a"));
a.click();
//点击"菜单管理"菜单
List<WebElement> menulis = driver.findElements(By.cssSelector(".treeview-menu li"));
WebElement menuli = menulis.get(0);
WebElement menua = menuli.findElement(By.cssSelector("a"));
menua.click();
//等待进入菜单管理页面
WebDriverWait menuwait = new WebDriverWait(driver,40);
WebElement menuopenNode = menuwait.until(new ExpectedCondition<WebElement>(){
@Override
public WebElement apply(WebDriver d) {
WebElement menulastProject = driver.findElement(By.cssSelector("#admin-module-search-form"));
return menulastProject;
}});
System.out.println("进入菜单管理页面");
}
}
转载于:https://my.oschina.net/u/2315260/blog/808479
最后
以上就是合适眼神为你收集整理的隐式菜单与展示菜单的Selenium页面定位元素的全部内容,希望文章能够帮你解决隐式菜单与展示菜单的Selenium页面定位元素所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复