Selenium Webdriver API(2)
2021-06-17 09:07
标签:css element idt submit dir ati http led api Selenium Webdriver API(2) 15、获取元素基本信息 16、判断元素是否可见 is_displayed 练习:判断按钮是否可见 test_visible.py class VisitByIE(unittest.TestCase): def tearDown(self): self.driver.quit() if __name__ == "__main__": 17、判断元素是否可用 is_enabled 18、获取css内容 value_of_css_property 19、清空输入框 clear 20、输入内容 send_keys 21、点击按钮 click 22、双击 double_click 测试代码: class VisitLocalwebByIE(unittest.TestCase): def tearDown(self): if __name__ == "__main__": Selenium Webdriver API(2) 标签:css element idt submit dir ati http led api 原文地址:https://www.cnblogs.com/test-chen/p/10331350.html
#启动IE浏览器
driver = webdriver.Ie(executable_path="IEDriverServer")
#打开搜狗
driver.get("http://www.sogou.com")
#获取“新闻”
link = driver.find_element_by_xpath(u"//*[text()=‘新闻‘]")
#查看link类型
type(link) #link为webElement对象
#查看link属性和方法
dir(link)
#获取文本值
print link.text
#获取元素标签名
link.tag_name
#获取元素大小
link.size
#获取属性
link.get_attribute("href")
#获取元素在页面中的位置
link.location
练习:获取百度搜索按钮中的文字“百度一下”
driver.get("http://www.baidu.com")
bot = driver.find_element_by_id("su")
print bot.get_attribute("value")
driver.get("http://www.sogou.com")
submit_botton = dirver.find_element_by_id("query")
submit_botton.is_displayed()
测试代码:test_visible.html (安装Apache后,并配置好后,将文件放到htdocs中,然后在本地浏览器打开)
http://localhost:8080/test_visible.html
#encoding=utf-8
import unittest
from selenium import webdriver
def setUp(self):
# 启动浏览器
self.driver = webdriver.Ie(executable_path="D:\\IEDriverServer")
def test_visible(self):
self.driver.get("http://localhost:8080/test_visible.html")
divs = [self.driver.find_element_by_id("div"+str(i)) for i in range(1,5)]
b1 = self.driver.find_element_by_id("button1")
b2 = self.driver.find_element_by_id("button2")
for div in divs:
if div.is_displayed():
print div.is_displayed()
else:
print div.is_displayed(),"div not visible"
b1.click()
b2.click()
print "++++++++++++++++++++++++++++++++"
for div in divs:
if div.is_displayed():
print div.is_displayed()
else:
print div.is_displayed(),"div not visible"
unittest.main()
测试网页:test_enable.html
driver.get("http://localhost:8080/test_enable.html")
input1 = driver.find_element_by_id("input1")
input1.is_enabled()
input1.value_of_css_property("width")
input1.value_of_css_property("font-family")
input1.clear()
input1.send_keys("test")
driver.get("http://localhost:8080/test_button.html")
button = driver.find_element_by_id("button")
button.click()
driver.get("http://localhost:8080/test_doubleclick.html")
inputbox = driver.find_element_by_id("inputBox")
from selenium.webdriver import ActionChains
action_chains = ActionChains(driver)
action_chains.double_click(inputbox).perform()
double_click.py
#encoding=utf-8
import time
import unittest
from selenium import webdriver
def setUp(self):
#启动浏览器
self.driver = webdriver.Ie(executable_path="D:\\IEDriverServer")
def test_doubleClick(self):
#自定义的测试网页
url = "http://localhost:8080/test_doubleclick.html"
#打开网页
self.driver.get(url)
#获取页面输入框元素
inputbox = self.driver.find_element_by_id("inputBox")
#导入支持双击的包
from selenium.webdriver import ActionChains
#实例化ActionChains
action_chains = ActionChains(self.driver)
#双击
action_chains.double_click(inputbox).perform()
time.sleep(3)
self.driver.quit()
unittest.main()
下一篇:python编程练习
文章标题:Selenium Webdriver API(2)
文章链接:http://soscw.com/index.php/essay/94980.html