Appium Actions tap to other element

Hi! I have code

public void clickRatingChatBotForIOS() {
swipeScreen(Direction.UP);
Actions action = new Actions(driver);
action.moveToElement(ratingBotForIOS).click().perform();
}

I have a problem, on IOS class actions clicking adjacent element.

first check element found coordinates. possibly your are just searching wrong.
second try tap by coordinates (found element center) instead if element correct.

1 Like

Hi! I already solved my problem. I was looking at another element)