我正在尝试使用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搜索以便能够通过其包含的图像标记的alt文本识别链接会很方便,所以我可以执行以下操作:
@FindByCustom(alt = "New")
public WebElement newButton;
上述确切的格式并不重要,但重要的是它继续与PageFactory.initElements
一起使用。
答案 0 :(得分:3)
此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