我想获取链接的完整文本,该文本包含在页面元素中,并且可能是带有.getText()参数的值的检索.问题是,页面上仅显示部分内容,后跟“ …”.
.getText returns = "http://www.example.com/es_es/spa..."
what I need to get ="http://www.example.com/es_es/spain/legal-notice.html"
这是HTML
<a href="http://www.example.com/es_es/spain/legal-notice.html"
target="_blank">http://www.example.com/es_es/spa...</a>
我能够找到该元素,只是不检索其全文.我尝试了.getAttribute(“ href”),但它返回了“ null”.
谢谢!
解决方法:
使用xpath尝试一下:
WebElement hrefText=driver.findElement(By.xpath("//a[@href='http://www.example.com/es_es/spain/legal-notice.html']"));
String text_hrefText=hrefText.getAttribute("href");
System.out.println(text_hrefText);