admin管理员组

文章数量:1345096

I'm using selenium with python to test my web server. What I need is to fill text in an input-text and click a button to submit messages to my server and open a new web page.

Here is my code:

from selenium import webdriver
from selenium.webdrivermon.by import By

driver = webdriver.Chrome()
driver.get("")
txt = driver.find_element_by_id('input-text')
txt.clear()
txt.send_keys('some messages')
btn = driver.find_element_by_id('input-search')
btn.click()
# How to print the source code of the new page here?
# I think it should be as below but I don't know how to do it:
# driver.get("new link")   <---- How to get the new link?
# print(driver.page_source.encode('utf-8'))

When I execute the python code above, everything works fine:

www.example is opened.
The some messages are filled in the input-text.
The button input-search is clicked.
The new web page is opened.

Now I need to print the page source code of the new web page, which is opened by clicking the button, but I don't know how to do this.

print(driver.page_source.encode('utf-8')) just gives me the source code of www.example, instead of the new web page.

I'm using selenium with python to test my web server. What I need is to fill text in an input-text and click a button to submit messages to my server and open a new web page.

Here is my code:

from selenium import webdriver
from selenium.webdriver.mon.by import By

driver = webdriver.Chrome()
driver.get("http://www.example.")
txt = driver.find_element_by_id('input-text')
txt.clear()
txt.send_keys('some messages')
btn = driver.find_element_by_id('input-search')
btn.click()
# How to print the source code of the new page here?
# I think it should be as below but I don't know how to do it:
# driver.get("new link")   <---- How to get the new link?
# print(driver.page_source.encode('utf-8'))

When I execute the python code above, everything works fine:

www.example. is opened.
The some messages are filled in the input-text.
The button input-search is clicked.
The new web page is opened.

Now I need to print the page source code of the new web page, which is opened by clicking the button, but I don't know how to do this.

print(driver.page_source.encode('utf-8')) just gives me the source code of www.example., instead of the new web page.

Share Improve this question edited Jun 21, 2017 at 7:17 Yves asked Jun 21, 2017 at 7:05 YvesYves 12.5k20 gold badges102 silver badges208 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

If the new page is loaded in a new tab or window, you will need to change the context of selenium to this new window first:

driver.switch_to_window(driver.window_handles[1])

The next step is to wait until the new content is loaded and then you can get the code with:

print(driver.page_source.encode('utf-8'))

You will need to wait for the new page to load then. Depending on how the webpage is built, you might have to wait for an element to appear and then dump the contents of the page in a variable with driver.page_source. Alternatively, if you don't need to click a button to reach the page, you can just driver.get(url) and rely on it to finish after the page finishes loading.

Before you print the new website source code, you can try a delay of a few seconds.

time.sleep(2)
print(driver.page_source.encode('utf-8'))

This works for me :D

本文标签: javascriptselenium How to get page source code after clicking a buttonStack Overflow