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.
Thesome 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.
Thesome 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.
3 Answers
Reset to default 5If 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
版权声明:本文标题:javascript - selenium: How to get page source code after clicking a button - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743758401a2533923.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论