请问,nativeStartX+elementX*nativeWebviewWidth/rootElementWidth,nativeStartY+elementY*nativeWebviewHeight/rootElementHeight 这个的原理是什么呢?不是很能看明白
尝试使用 adb 定位,也是失败;
el =getElementByName(self.driver,'返回今天')
sleep(3)
#el.click()
x1=el.location['x']
y1=el.location['y']
width=el.size['width']
height=el.size['height']
x2=x1+width
y2=y1+height
x=int((x1+x2)/2)
y=int((y1+y2)/2)
os.popen("adb shell input tap"+ str(x) + " " + str(y))
sleep(3)
所有可能的定位我都试过,可以定位到这个元素,但是在点击后,界面上并没有点击结果(日期框关闭),界面也未加载数据
空格的问题怎么解决了?我这边也是有空格,然后定位不到