up vote 3 down vote favorite
1
share [g+] share [fb]

I have some HTML that looks like this:

<h1 id="header">Header</h1>

I would like to click it using Watir and XPath.

link|improve this question

feedback

4 Answers

browser.element_by_xpath("//h1[@id='header']").click

Sources:

link|improve this answer
feedback
up vote 2 down vote accepted
browser.h1(:xpath, "//h1[@id='header']").click
link|improve this answer
feedback

Not using XPath, but it works:

browser.h1(:id, "header").click
link|improve this answer
feedback

Also not XPath, but works:

browser.h1(:html, /header/).click
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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