获取元素的css属性值
#获取搜索输入框的高度
searchBox.value_of_css_property(“height”)
#获取搜索输入框的宽度
searchBox.value_of_css_property(“width”)
#获取搜索输入框的字体
searchBox.value_of_css_property(“font-family”)
import unittest
import time
from selenium import webdriver
class VisitSogouByIE(unittest.TestCase):
def setUp(self):
# 启动IE浏览器
self.driver = webdriver.Ie(executable_path="g:\\IEDriverServer")
def test_getWebElementCssValue(self):
url = "http://www.baidu.com"
# 访问baidu首页
self.driver.get(url)
# 找到搜索输入框元素
searchBox = self.driver.find_element_by_id("kw")
# 使用页面元素对象的value_of_css_property()方法获取元素的CSS属性值
print("搜索输入框的高度是:", searchBox.value_of_css_property("height"))
print("搜索输入框的宽度是:", searchBox.value_of_css_property("width"))
font = searchBox.value_of_css_property("font-family")
print("搜索输入框的字体是:", font)
# 断言搜索输入框的字体是否是arial字体
self.assertEqual(font, "arial")
def tearDown(self):
# 退出IE浏览器
self.driver.quit()
if __name__ == '__main__':
unittest.main()