如何在浏览器中检查元素时获取元素大小的值?我的意思是,如何通过硒等获得402x48
?
答案 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.