Using Selenium for browser automation (Python).
If I understand correctly, the following code would be used
inputElement = driver.find_element_by_name("q")
the_text = inputElement.text
How would I go about getting the text on the whole page as opposed to looking within a particular element?