How to locate elements using bounds

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

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.

1 Like

how to write touch action script using bound values

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

same here I am excited to know about