I have some HTML that looks like this:
<h1 id="header">Header</h1>
I would like to click it using Watir and XPath.
browser.element_by_xpath("//h1[@id='header']").click
Sources:
browser.h1(:xpath, "//h1[@id='header']").click
Not using XPath, but it works:
browser.h1(:id, "header").click
Also not XPath, but works:
browser.h1(:html, /header/).click
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
about » faq »
tagged
asked
2 years ago
viewed
2,110 times
active
1 year ago