以下是该方案。
当我使用GetSize()时,GetLocation()对图像ID'FlashID1x'的函数总是给出250,300,但元素的实际高度和宽度是1 X 1,这基本上是错误的。
这是我的目标dom:
<img id="FlashID1x" border="0" width="300" height="250" style="width:300px;height:250px;" alt="" src="http://s2.adform.net/Banners/invisible.gif?bv=2"/>
这是我的代码:
System.out.println("total : "+iframe.size());
//driver.switchTo().frame(frame);
org.openqa.selenium.Point point=driver.findElement(By.xpath(".//*[@id='FlashID1x']")).getLocation();
System.out.println("X Position : "+point.x);
System.out.println("Y Position : "+point.y);
System.out.println("X getX : "+point.getX());
System.out.println("Y gety : "+point.getY());
Rectangle pointer=driver.findElement(By.xpath(".//*[@id='FlashID1x']")).getRect();
System.out.println("height : "+pointer.hashCode();
System.out.println(" width : "+pointer.getWidth());
System.out.println("getHeight : "+pointer.getHeight());
System.out.println(" getWidth : "+pointer.getWidth());
答案 0 :(得分:6)
getSize方法返回呈现的Web元素大小,而不是图像的物理大小。 如果你的目标是获得内在的高度和重量,那么你可以尝试获得naturalWidth和naturalHeight属性:
WebDriver driver = new FirefoxDriver();
WebDriverWait wait = new WebDriverWait(driver, 20);
driver.get("http://stackoverflow.com");
// get the intrinsic size with the getAttribute method
WebElement ele = driver.findElement(By.cssSelector("img"));
String naturalWidth = ele.getAttribute("naturalWidth");
String naturalHeight = ele.getAttribute("naturalHeight");
// get the intrinsic size with a piece of Javascript
ArrayList result = (ArrayList)((JavascriptExecutor) driver).executeScript(
"return [arguments[0].naturalWidth, arguments[0].naturalHeight];", ele);
Long naturalWidth2 = (Long)result.get(0);
Long naturalHeight2 = (Long)result.get(1);
答案 1 :(得分:2)
无论图像本身的大小如何,从WebDriver spec可以清楚地看出它是确定<img>
元素维度的CSS,同样适用于其他每种元素的规则。
我认为这很公平。你的标记显然与底层图像不匹配,但可能有一些我们无法看到的理由。由于元素的膨胀大小会影响其他元素的定位,因此WebDriver准确地报告他们的位置是合理的,而不是假装它们整齐地隐藏在一个小方块旁边。
如果您需要解决方法:您可以使用针对该URL模式或Id的特殊覆盖创建getImageRect()
方法,您可以使用HTTP库在启动时检查实际图像的大小并对其进行缓存,或者您可以只需硬编码1x1。