vote up 0 vote down star
1

I have some HTML like this:

<h4 class="box_header clearfix">
<span>
<a rel="dialog" href="http://www.google.com/?q=word">Search</a>
</span>
<small>
<span>
<a rel="dialog" href="http://www.google.com/?q=word">Search</a>
</span>
</h4>

I am trying to get the href here in Java using Selenium. I have tried the following:

selenium.getText("xpath=/descendant::h4[@class='box_header clearfix']/");
selenium.getAttribute("xpath=/descendant::h4[@class='box_header clearfix']/");

But none of these work. It keeps complaining that my xpath is invalid. Can someone tell me what mistake I am doing?

flag

77% accept rate

2 Answers

vote up 3 vote down check

You should use getAttribute to get the href of the link. Your XPath needs a reference to the final node, plus the required attribute. The following should work:

selenium.getAttribute("xpath=/descendant::h4[@class='box_header clearfix']/a@href");

You could also modify your XPath so that it's a bit more flexible to change, or even use CSS to locate the element:

//modified xpath
selenium.getAttribute("//h4[contains(@class,'box_header')]/a@href");

//css locator
selenium.getAttribute("css=.box_header a@href");
link|flag
@Dave & @Legend: If you care about the speed of your tests, my advice would be to avoid such flexible xpath expressions (using // and similar). The reason is that Selenium by default uses a javascript XPath library which is very slow (I'm talking about seconds here), especially if it needs to go through the whole HTML document in order to find something. – Igor Brejc Nov 9 at 9:00
@Igor It's a balance of allowing your application to change somewhat without your tests failing, and your tests running faster. I generally prefer not to fix tests between application changes so don't mind the XPath taking a little bit longer. Of course you could also use CSS locators, which are faster and (generally) more flexible. :) – Dave Hunt Nov 9 at 9:22
Thank You for the advice. This was just a testing for the testing app so I will keep that in mind. The ids and classnames are almost dynamically being generated so I was left with just XPath in the end... – Legend Nov 10 at 20:59
vote up 1 vote down

I had similar problems with Selenium and xpath in the past and couldn't really resolve it (other than changing the expression). Just to be sure I suggest trying your xpath expressions with the XPath Checker addon for firefox.

link|flag
Thanks. I will install that and check it Just to make sure I am on the right path, am I using XPath correctly with selenium? I mean which one should I use: getText or getAttribute? – Legend Nov 9 at 5:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.