This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now.
1 / 5
Dec 2016

bound values -[447,1532][634,1768]. these are my bound values using that how can i write script to find elements in the mobile application

  • created

    Dec '16
  • last reply

    Mar '18
  • 4

    replies

  • 2.2k

    views

  • 4

    users

  • 1

    like

I think the element is already located by the bounds. The last thing we need to do is to interact with it.

Touch action should be ok in this case.

7 months later

int x=500;
int y=900;
TouchAction location=new TouchAction((MobileDriver) driver_touch);
location.tap(x, y).perform();

7 months later