首页 > 编程语言 > 详细

WebDriver 中常用方法4---获取验证信息(虫师《selenium3自动化测试实战--基于Python语言笔记16》)

时间:2019-09-07 13:57:09      阅读:151      评论:0      收藏:0      [点我收藏+]

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

2.current_url:用于获取当前页面的URL

3.text:用于获取当前页面的文本信息

from time import sleep
from selenium import webdriver

driver = webdriver.Chrome()
driver.get("https://www.baidu.com")
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()

运行结果为:

Before search ===========
title:百度一下,你就知道
URL:https://www.baidu.com/
After search =========
title:selenium_百度搜索
URL:https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd=selenium&rsv_pq=e09374d700008cca&rsv_t=5f46bEZRwZ5%2FiIAQaCiFjjhcQGNv3cUU34RQnx3AodW5SloTz%2BubhS%2BPO%2Bg&rqlang=cn&rsv_enter=0&rsv_dl=tb&rsv_sug3=8&inputT=133&rsv_sug4=133
result:搜索工具
百度为您找到相关结果约27,500,000个

 

WebDriver 中常用方法4---获取验证信息(虫师《selenium3自动化测试实战--基于Python语言笔记16》)

原文:https://www.cnblogs.com/kite123/p/11480208.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!