如何在使用java的Webdriver中启用链接?

时间:2013-08-07 13:09:55

标签: java webdriver selenium-webdriver

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

如何使用java在Webdriver中启用链接。请找到相同的屏幕截图。

enter image description here

enter image description here

我已为此编写代码:

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");

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

3 个答案:

答案 0 :(得分: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();

进行检查

答案 1 :(得分: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");
}

答案 2 :(得分:0)

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

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

此处class是属性名称。