-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
# (1)导入selenium | ||
from selenium import webdriver | ||
|
||
# (2)创建浏览器操作对象 | ||
path = 'chromedriver.exe' | ||
|
||
browser = webdriver.Chrome(path) | ||
|
||
# (3)访问网站 | ||
# url='https://www.baidu.com' | ||
|
||
# browser.get(url) | ||
|
||
url = 'https://www.jd.com/' | ||
browser.get(url) | ||
|
||
# page_source获取网页源码 | ||
content = browser.page_source | ||
|
||
print(content) |