Created
September 13, 2024 12:54
-
-
Save SarahElson/744ab10f90f1689a471d35fba21f4fe8 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
<?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="WebDriverIO Android App Biometric Authentication Test"> | |
<parameter name="deviceType" value="local"/> | |
<classes> | |
<class name="io.github.mfaisalkhatri.tests.BiometricAuthTests"> | |
<methods> | |
<include name="testFingerPrintAuthenticationLogin"/> | |
</methods> | |
</class> | |
</classes> | |
</test> | |
</suite> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment