I have the following code:
from selenium import selenium
selenium = selenium("localhost", 4444, "*chrome", "http://some_site.com/")
selenium.start()
sel = selenium
sel.open("/")
sel.type("ctl00_ContentPlaceHolder1_SuburbTownTextBox", "Adelaide,SA,5000")
sel.click("ctl00_ContentPlaceHolder1_SearchImageButton")
text = sel.get_html_source()
print(text)
Clicking executes a javascript file, which then displays the results on the same page. Obviously, print(text)only the source of orignal html will print. How can I get javascript results?
source
share