我有以下HTML代码:
<a href="/search/?p=2&q=move&mt=1"> 2 </a>
我想得到href中包含的内容,即我正在寻找一个命令,它会给我“/ search /?p = 2& q = move& mt = 1”值为href.
对于上面的查询,有人可以帮助我使用selenium中的相应命令和css定位器吗?
如果我有类似的东西:
<a href="/search/?p=2&q=move&mt=1"> 2 </a> <a href="/search/?p=2&q=move&mt=2"> 3 </a>
解决方法
如果您的HTML仅包含那个< a>标签,然后这应该这样做:
String href = selenium.getAttribute("css=a@href");
您使用DefaultSelenium#getAttribute()
method并传入CSS定位器,@符号以及要获取的属性的名称.在这种情况下,您选择a并获取其@href.
> @之后的部分告诉Selenium该部分是属性的名称.
>你应该在@href之前放置:contains(‘2’),因为它是定位器的一部分,而不是属性.所以,像这样:
selenium.getAttribute("css=a:contains('2')@href");