标签:height 大小 baidu width ref details python net size
测试某个控件是否和设计大小保存一致。
练习场景:百度首页【百度一下】按钮,打印出按钮的大小。
具体代码:
# coding=utf-8 import time from selenium import webdriver # config url = "https://baidu.com/" driver = webdriver.Chrome() driver.maximize_window() driver.implicitly_wait(6) driver.get(url) time.sleep(1) search_btn = driver.find_element_by_id(‘su‘) print(search_btn.size)
运行结果:
{‘height‘: 36, ‘width‘: 100}
参考文章:https://blog.csdn.net/u011541946/article/details/69952043
Python+Selenium练习(二十二)-获取页面元素大小
标签:height 大小 baidu width ref details python net size
原文地址:https://www.cnblogs.com/zhaocbbb/p/12641116.html