{
var x = 0, y = 0
do {
x += o.offsetLeft
y += o.offsetTop
} while (o = o.offsetParent)
return { 'x': x, 'y': y }
}
在控件的clickable属性为false时,可以使用控件的bounds属性来定位其位置,并通过点击坐标来实现单击操作。在您提供的信息中,bounds属性的值为(31,77,47,106),这代表了该控件在屏幕上的位置信息。具体来说,这个值表示该控件的左上角坐标为(31,77),右下角坐标为(47,106)。因此,您可以通过计算出该控件的中心坐标,然后在该坐标处实现单击操作。示例代码如下:
scssCopy codelet widget = id("back_iv").findOne()
let bounds = widget.bounds()
let centerX = (bounds.left + bounds.right) / 2
let centerY = (bounds.top + bounds.bottom) / 2click(centerX, centerY)
上述代码中,首先获取到了控件对象,然后获取了该控件的bounds属性,并计算出了该控件的中心坐标(centerX, centerY)。最后,通过click方法在该坐标处实现了单击操作。