Description
Hello,
I am updating our framework to Selenium 4 and because we share some of the code for the session creation of devices and browsers I noticed that for mobile apps the IFindByAndroidUIAutomator was removed.
We are using it to run some code in order to scroll the view like this:
var driver = ((AndroidDriver) SeleniumContext.WebDriver);
var code = BuildJavaCode("textContains", expectedText);
driver.FindElementByAndroidUIAutomator(code);
Is there a replacement I can use or this will no longer be applied?
Thanks