driver = webdriver.Ie()
driver.implicitly_wait(5)
url = "http://nontax.hebcz.cn"
driver.get(url)
driver.maximize_window()
print("=======")
print(driver.page_source)
print("=======")
This is my code and it print nothing
Selenium 2.53.1
I've added the Reg and changed IE's security options
What can i do???
You haven't mentioned if you are seeing any error. However, using Selenium
v3.141.0
I'm able to extract thepage_source
as per the solutionbelow:Code Block:
Console Output: