一个输入框,想获取其在手机浏览器所在的位置
phone_x=phone_ele.location.get(‘x’)
phone_y = phone_ele.location.get(‘y’)
print(phone_ele.size)
返回报错:
按下面的方式获取,返回none:
print(phone_ele.get_attribute(“bounds”))
print(phone_ele.get_attribute(“contentSize”))
一个输入框,想获取其在手机浏览器所在的位置
phone_x=phone_ele.location.get(‘x’)
phone_y = phone_ele.location.get(‘y’)
print(phone_ele.size)
返回报错:
先确认下这个输入框有哪些属性
元素确定已经成功的获取到了吗?