Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created September 13, 2024 12:43
Show Gist options
  • Save SarahElson/a5f5ea54ce9ccfff8dd817892cdc11f7 to your computer and use it in GitHub Desktop.
Save SarahElson/a5f5ea54ce9ccfff8dd817892cdc11f7 to your computer and use it in GitHub Desktop.
How to Test Biometric Authentication With Appium
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Biometric authentication tests for Android using appium">
<test name="Instrumentation App Biometric Authentication Tests" >
<classes>
<class name="io.github.mfaisalkhatri.tests.BiometricAuthTests">
<methods>
<include name="testSuccessfulBiometricAuthenticationUsingLambdaTest"/>
<include name="testFailedBiometricAuthenticationUsingLambdaTest"/>
</methods>
</class>
</classes>
</test>
</suite>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment