使用量角器查找并获取href的值

时间:2017-03-31 03:53:50

标签: protractor href

enter image description here

我有搜索和阅读许多指南,但它不起作用。有人可以帮帮我吗?我想获得像图像中的href值。感谢您阅读我的帖子。

1 个答案:

答案 0 :(得分:1)

您可以使用getAttribute()方法获取webelement中可用的任何属性的值。在您的情况下,您需要找到相应的元素,并可以使用下面的代码来获取href值,

element(by.css("a")).getAttribute("href").then(function(hrefValue){
  console.log("href value",hrefValue);
})