我正在尝试使用Selenium PageObjects来对标签上缺少很多方便的id
或class
属性的页面进行建模,因此我发现我需要开发出更具创造性的方式来识别页面上的元素。其中是一种类似以下的模式:
<div id="menuButtons">
<a><img src="logo.png" alt="New"></a>
<a><img src="logo2.png" alt="Upload"></a>
</div>
能够创建自定义findBy搜索以通过包含的图像标签的替代文本来标识链接将很方便,因此我可以执行以下操作:
@FindByCustom(alt = "New")
public WebElement newButton;
上面的确切格式并不重要,但重要的是它可以继续与
PageFactory.initElements
一起使用。 最佳答案
该article的作者扩展了'FindBy`注释以支持他的需求。您可以使用它来覆盖“ FindBy”并进行实现。
编辑的代码示例:
private static class CustomFindByAnnotations extends Annotations {
protected By buildByFromLongFindBy(FindBy findBy) {
How how = findBy.how();
String using = findBy.using();
switch (how) {
case CLASS_NAME:
return By.className(using);
case ID:
return By.id(using);
case ID_OR_NAME:
return new ByIdOrName(using);
case LINK_TEXT:
return By.linkText(using);
case NAME:
return By.name(using);
case PARTIAL_LINK_TEXT:
return By.partialLinkText(using);
case TAG_NAME:
return By.tagName(using);
case XPATH:
return By.xpath(using);
case ALT:
return By.cssSelector("[alt='" + using " + ']");
default:
throw new IllegalArgumentException("Cannot determine how to locate element " + field);
}
}
}
请注意,我自己没有尝试过。希望能帮助到你。
如果只需要
<a>
标记,则可以使用xpath查找元素,并使用/..
向上一级driver.findElement(By.xpath(".//img[alt='New']/.."));
或者您可以将按钮放在列表中并按索引访问它们
List<WebElement> buttons = driver.findElements(By.id("menuButtons")); //note the spelling of findElements
// butttons.get(0) is the first <a> tag
关于java - 如何扩展Selenium的FindBy批注,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35185404/