How to use mtGestureEnd method in fMBT

Best Python code snippet using fMBT_python

fmbttizen-agent.py

Source:fmbttizen-agent.py Github

copy

Full Screen

...449 mtEventSend(_EV_ABS, _ABS_X, x)450 if 0 <= y <= root_height:451 mtEventSend(_EV_ABS, _ABS_Y, y)452 mtEventSend(0, 0, 0)453def mtGestureEnd(slot):454 mtEventSend(_EV_ABS, _ABS_MT_SLOT, slot)455 mtEventSend(_EV_ABS, _ABS_MT_TRACKING_ID, -1)456 mtEventSend(0, 0, 0) # SYNC457 del mtEvents[slot]458def mtLinearGesture(listOfStartEndPoints, duration, movePoints, sleepBeforeMove=0, sleepAfterMove=0):459 # listOfStartEndPoints: [ [(finger1startX, finger1startY), (finger1endX, finger1endY)],460 # [(finger2startX, finger2startY), (finger2endX, finger2endY)], ...]461 startPoints = [startEnd[0] for startEnd in listOfStartEndPoints]462 xDist = [startEnd[1][0] - startEnd[0][0] for startEnd in listOfStartEndPoints]463 yDist = [startEnd[1][1] - startEnd[0][1] for startEnd in listOfStartEndPoints]464 movePointsF = float(movePoints)465 fingers = []466 for (x, y) in startPoints:467 fingers.append(mtGestureStart(x, y))468 if sleepBeforeMove > 0: time.sleep(sleepBeforeMove)469 if movePoints > 0:470 intermediateSleep = float(duration) / movePoints471 for i in xrange(1, movePoints + 1):472 if intermediateSleep > 0:473 time.sleep(intermediateSleep)474 for fingerIndex, finger in enumerate(fingers):475 mtGestureMove(finger,476 startPoints[fingerIndex][0] + int(xDist[fingerIndex]*i/movePointsF),477 startPoints[fingerIndex][1] + int(yDist[fingerIndex]*i/movePointsF))478 if sleepAfterMove > 0: time.sleep(sleepAfterMove)479 for finger in fingers:480 mtGestureEnd(finger)481 return True, None482def typeCharX(origChar):483 modifiers = []484 c = specialCharToXString(origChar)485 keysym = libX11.XStringToKeysym(c)486 if keysym == NoSymbol:487 return False488 keycode = libX11.XKeysymToKeycode(display, keysym)489 first = (keycode - cMinKeycode.value) * cKeysymsPerKeycode.value490 try:491 if chr(keysyms[first + 1]) == origChar:492 modifiers.append(shiftModifier)493 except ValueError: pass494 for m in modifiers:...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run fMBT automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful