本文最后更新于 2024-07-26T20:49:51+08:00
1 2 3 4 5 6 7 8 9 10 11 12 13
| from selenium import webdriver browser=webdriver.Chrome()
url='https://www.jd.com' browser.get(url)
content=browser.page_source print(content)
input("按任意按钮退出程序")
|
selenium_基本使用
https://ianwusb.blog/2024/07/26/selenium_基本使用/