vote up 1 vote down star

I have a GWT application for which I'm trying to write some tests using Selenium.

I'm using XPath to identify the elements on the page for the tests. Using id won't work as the id values are auto-generated by GWT and can change. Things started going well when I realised I could find buttons by their labels as follows:

//button[.='OK']

However, when I started running multiple tests I started having problems. I realised that the issue was all the different "pages" of the GWT app once generated by the Javascript remain in the HTML in hidden <div> elements. This meant my Selenium tests were sometimes clicking hidden buttons instead of the button visible in the current view.

Examining the HTML with Firebug, it seems that GWT hides the <div> elements by adding display: none to their style attribute. This means I can find all the hidden OK buttons as follows:

//div[contains(@style,'display: none')]//button[.='OK']

This will find all the hidden OK buttons, i.e the buttons which have an ancestor <div> which is hidden by having display: none in the style.

My question is: how do I use XPath to find only the visible OK buttons? How do I find the buttons which have no ancestor <div> elements with display: none in the style?

flag

@Dave-Webb This was a typo -- corrected now. As you can see, the "ancestor:" axis is still avoided. Please, revert your downvote :) – Dimitre Novatchev Mar 17 '09 at 15:58

2 Answers

vote up 5 vote down check

This should work:

//button[.='OK' and not(ancestor::div[contains(@style,'display:none')])]

EDIT:

The simpler and more efficient expression below:

//div[not(contains(@style,'display:none'))]//button[.='OK']

does not work properly because every button has at least one div that's visible in its ancestors.

link|flag
That's it. Many thanks. – Dave Webb Mar 16 '09 at 20:01
vote up 0 vote down

I made this script for testing xpath querys... http://userscripts.org/scripts/review/44409

I hope it is useful

link|flag
Your script looks useful but I'm using the XPath Checker for Firefox to test XPaths: addons.mozilla.org/en-US/firefox/addon/1095 – Dave Webb Mar 17 '09 at 15:23

Your Answer

Get an OpenID
or
never shown

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