如何在浏览器中检查元素时获取元素大小的值?

时间:2018-03-05 18:37:19

标签: python-3.x selenium selenium-webdriver

如何在浏览器中检查元素时获取元素大小的值?我的意思是,如何通过硒等获得402x48

Picture

2 个答案:

答案 0 :(得分:1)

你可以使用selenium

getAttribute(arg0)方法。

String width = driver.findElement(image locator).getAttribute("width");
String height = driver.findElement(image locator).getAttribute("height");

答案 1 :(得分:0)

print(driver.find_element_by_xpath("//someXpath").size) # gives size of the element as width & height.