Created
September 13, 2024 12:49
-
-
Save SarahElson/e8693a51339042e7df361d751a2f525f to your computer and use it in GitHub Desktop.
How to Test Biometric Authentication With Appium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void createAndroidDriver() { | |
try { | |
this.androidDriver = new AndroidDriver(new URL("http://127.0.0.1:4723/"), uiAutomator2Options()); | |
} catch (final MalformedURLException e) { | |
throw new Error("Error while setting up Android Driver", e); | |
} | |
setupDriverTimeouts(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment