appium+python+ 手机端向左滑动的小白疑问:
代码:
def swipLeft(t):
l = getSize()
x1 = int(l[0] * 0.75)
y1 = int(l[1] * 0.5)
x2 = int(l[0] * 0.05)
driver.swipe(x1, y1, x2, y1, t)
swipLeft(100)
1、这里面的,[0]、[1] 是根据什么来定夺的?
2、0.75、0.5、0.05 这三个值又是怎么取的?
3、[0] * 0.05 的意思表示?