Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Last active September 13, 2024 14:48
Show Gist options
  • Save SarahElson/09cbc7a8ef0dce16a9319e0f9aa663b0 to your computer and use it in GitHub Desktop.
Save SarahElson/09cbc7a8ef0dce16a9319e0f9aa663b0 to your computer and use it in GitHub Desktop.
How to Test Biometric Authentication With Appium
public class BiometricAuthTests extends BaseTest {
@Test
public void testSuccessfulBiometricAuthenticationUsingLambdaTest() {
final HomePage homePage = new HomePage(this.androidDriverManager.getAndroidDriver());
homePage.performSuccessBioMetricAuthenticationOnRealDevice();
assertEquals(homePage.getMessageText(), "Success");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment