Reputation: 567
Since Web Developer Plugin is an self-sufficient tool, ideally it should contain XPath checker/validator as FireBug did.
Actually I could not find it. I am not sure that it exists. But if it is, please anybody help to navigate to.
Thanks!
Upvotes: 24
Views: 27117
Reputation: 71
Now it is possible to use xpath directly from the browser.
Now the inspector should be pointing to the element that was the outcome of evaluating the xpath. For example after evaluating //div[@id="notify-container"] the inspector is pointing to that div
Upvotes: 5
Reputation: 56
I am using AutoPager extension on Firefox. It is quite handy for generate xpath and search xpath. you can refer to this post for more information: https://thachhoangautomation.wordpress.com/2017/10/11/generatesearch-cssselector-and-xpath-on-firefox-55-onward/
Upvotes: 0
Reputation: 617
In Firefox you can use the web developer tools console for xpath validation like this:
1.Open Web Developer
tools.
2.Click on Console
3.Type $x("path")
This should let you validate that your path is valid.
References:
https://developer.mozilla.org/en-US/docs/Tools/Web_Console/The_command_line_interpreter
https://developer.mozilla.org/en-US/docs/Web/XPath
Upvotes: 41