How do I get the visible text portion of a web page with selenium webdriver without the HTML tags?
I need something equivalent to the function HtmlPage.asText() from Htmlunit.
It is not enough to take the text with the function WebDriver.getSource and parse it with jsoup because there could be in the page hidden elements (by external CSS) which I am not interested in them.
Doing By.tagName("body") (or some other selector to select the top element), then performing getText() on that element will return all of the visible text.
By.tagName("body")
getText()
2.1m questions
2.1m answers
60 comments
57.0k users