You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
396 B
19 lines
396 B
# # 导入
|
|
# from DrissionPage import SessionPage
|
|
# # 创建页面对象
|
|
# page = SessionPage()
|
|
# # 访问网页
|
|
# page.get('https://www.essilor.com/cn-zh/')
|
|
# print(page.html)
|
|
# print(page)
|
|
# page.close()
|
|
|
|
# 导入
|
|
from DrissionPage import ChromiumPage
|
|
# 创建页面对象
|
|
page = ChromiumPage()
|
|
# 访问网页
|
|
page.get('https://www.essilor.com/cn-zh/')
|
|
print(page.html)
|
|
print(page)
|
|
page.close()
|