How to use click_element_at_coordinates method in robotframework-appiumlibrary

Best Python code snippet using robotframework-appiumlibrary_python

extendedelement.py

Source:extendedelement.py Github

copy

Full Screen

...41 super(ExtendedElementKeywords, self).click_element(element)42 if not skip_ready:43 # pylint: disable=no-member44 self._wait_until_page_ready()45 def click_element_at_coordinates(self, locator, xoffset, yoffset, skip_ready=False):46 """Click element identified by ``locator`` at x/y coordinates of the element.47 Cursor is moved at the center of the element and x/y coordinates are48 calculated from that point.49 Arguments:50 - ``locator``: The locator to find requested element. Key attributes for51 arbitrary elements are ``id`` and ``name``. See `introduction` for52 details about locating elements.53 - ``xoffset``: The x offset value from the center of the element.54 - ``yoffset``: The y offset value from the center of the element.55 - ``skip_ready``: A boolean flag to skip the wait for page ready. (Default False)56 Examples:57 | Click Element At Coordinates | css=div.class | 0 | 0 |58 | Click Element At Coordinates | css=div.class | 0 | 0 | True |59 """60 element = self._scroll_into_view_on_internet_explorer(locator)61 super(ExtendedElementKeywords, self). \62 click_element_at_coordinates(element, xoffset, yoffset)63 if not skip_ready:64 # pylint: disable=no-member65 self._wait_until_page_ready()66 def click_image(self, locator, skip_ready=False):67 """Click an image identified by ``locator``.68 Arguments:69 - ``locator``: The locator to find requested image. Key attributes for70 arbitrary images are ``id`` and ``name``. See `introduction` for71 details about locating elements.72 - ``skip_ready``: A boolean flag to skip the wait for page ready. (Default False)73 Examples:74 | Click Image | css=div.class |75 | Click Image | css=div.class | True |76 """...

Full Screen

Full Screen

_touch.py

Source:_touch.py Github

copy

Full Screen

...74 action.press(x=float(x), y=float(y)).wait(float(duration)).release().perform()75 except:76 assert False, "Can't click on a point at (%s,%s)" % (x,y)7778 def click_element_at_coordinates(self, coordinate_X, coordinate_Y):79 """ click element at a certain coordinate """80 self._info("Pressing at (%s, %s)." % (coordinate_X, coordinate_Y))81 driver = self._current_application()82 action = TouchAction(driver) ...

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 robotframework-appiumlibrary 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