如何检查两个图像之间的空间
考虑网页中有两个图像。
我想知道他们之间是否有任何空间。
我正在使用 selenium 工具和 python 语言。
答案可以是任何语言。
Consider there are two images in a webpage.
I want know if they have any space rendered between them.
I'm using selenium tool and python language.
Answer could be in any language.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以用javascript快速查找每个图像的位置和大小(我使用的是jquery)
$('#image-two')...同样的事情
只需看看其中的x是否紧邻x+宽度另一个。对 Y 重复
编辑:具有相对定位的父母可能存在一些问题。这里的代码可能比仅使用 x 和 y 更安全:
http: //blog.firetree.net/2005/07/04/javascript-find-position/
you can look up the position and size of each image quickly with javascript (I'm using jquery)
$('#image-two')...same thing
Just see if the x of one is right next to the x+width of the other. Repeat for Y.
edit: there may be some issues with parents that have relative positioning. The code here is probably more bulletproof than just using x and y:
http://blog.firetree.net/2005/07/04/javascript-find-position/