Python+Selenium练习(二十二)-获取页面元素大小
Posted 给自己一个向前进的理由
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python+Selenium练习(二十二)-获取页面元素大小相关的知识,希望对你有一定的参考价值。
测试某个控件是否和设计大小保存一致。
练习场景:百度首页【百度一下】按钮,打印出按钮的大小。
具体代码:
# 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练习(二十二)-获取页面元素大小的主要内容,如果未能解决你的问题,请参考以下文章
Python爬虫(二十二)_selenium案例:模拟登陆豆瓣
Python+Selenium练习(二十八)-处理Alert弹窗