0

在这里发布此问题之前,我已经搜索了论坛。我找到了一些答案,但我无法从答案中获得成功。我的问题是

如何使用 java 在 Webdriver 中检查链接是否启用。请找到相同的附加屏幕截图。

在此处输入图像描述

在此处输入图像描述

我为此编写了代码:

WebElement textlink = driver.findElement(By.id(OR.getProperty("lnkView_ID")));
if (textlink.isEnabled())
   System.out.println("View link: Enabled");
else
   System.out.println("View link: Disabled");

请帮我解决这个问题。帮助将不胜感激。

4

3 回答 3

1

尝试以下操作:

String isDisabled = textlink.getAttribute("disabled");
if (isDisabled==null || !isDisabled.equals("disabled")){
   System.out.println("View link: Enabled");
}else{
   System.out.println("View link: Disabled");
}

看起来属性“禁用”是它是否启用的切换,因此您可以使用检查它getAttribute();

于 2013-08-07T14:14:02.770 回答
0

检查标签中禁用的属性。由于“查看”链接被禁用,您可以从 HTML 中找到它由 disabled="disabled" 表示。在 XPath 中为或使用 Id 标识符编写标识符,如下所示,使用禁用的属性值查找链接状态。

string viewLinkXpath = "//tobody/tr/td/a";
IWebElement viewLinkElement = driver.FindElement(By.XPath(viewLinkXpath));
if(viewLinkElement.GetAttribute("disabled")!="disabled")
{
   Console.WriteLine("View link enabled");
}
于 2013-08-07T15:45:01.340 回答
0

请提供属性名称作为输入,getAttribute而不是提供属性值。例如:

WebElement test=d.findElement(By.xpath(ORNsk.prevXpath));
String isDisabled=test.getAttribute("class");

class是属性名称。

于 2014-03-08T07:47:51.923 回答