美文网首页
获得验证信息

获得验证信息

作者: DunCan躺尸剑法 | 来源:发表于2021-07-05 08:11 被阅读0次

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()

相关文章

网友评论

      本文标题:获得验证信息

      本文链接:https://www.haomeiwen.com/subject/jztyultx.html