获得验证信息

2021-07-05  本文已影响0人  DunCan躺尸剑法

from seleniumimport webdriver

from timeimport sleep

driver = webdriver.Chrome()

driver.get("https://www.baidu.com")

"""

获得验证信息

title  用于获取当前页面的标题

current_url  用于获取当前页面的URL

text 用户获取当前页面的文本内容

"""

print('Before search===========================')

# 打印当前页面title

title = driver.title

print("title:" + title)

# 打印当前页面URL

now_url = driver.current_url

print("URL:" + now_url)

driver.find_element_by_id("kw").send_keys("selenium")

driver.find_element_by_id("su").click()

sleep(2)

print('After search============================')

# 再次打印当前页面title

title = driver.title

print("title:" + title)

# 再次打印当前页面URL

now_url = driver.current_url

print("URL:" + now_url)

# 获取搜索结果条数

num = driver.find_element_by_class_name("nums").text

print("result:" + num)

driver.quit()

上一篇 下一篇

猜你喜欢

热点阅读