Need to upgrade docs for version 10 with keywords using Appium script

This guideline Find the locator of a mobile application element | Katalon Docs is support for Appium Java Client v7. After migration to v8 they removed the io.appium.java_client.android.AndroidDriver.

I have issues when using “AppiumDriver<?> driver = MobileDriverFactory.getDriver()”. Anyone know how to fix this?

KS: 10.0.0
Appium: 2.11.1
UIAutomator2: 3.8.0

1 Like

Try remove <?>

AppiumDriver driver = MobileDriverFactory.getDriver()

thanks, now it works