Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created September 13, 2024 12:49
Show Gist options
  • Save SarahElson/e8693a51339042e7df361d751a2f525f to your computer and use it in GitHub Desktop.
Save SarahElson/e8693a51339042e7df361d751a2f525f to your computer and use it in GitHub Desktop.
How to Test Biometric Authentication With Appium
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