Last active
September 13, 2024 14:46
-
-
Save SarahElson/c1a91616746b55db8e00ede2536c0a4b 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 class BaseTest { | |
protected AndroidDriverManager androidDriverManager; | |
@BeforeClass(alwaysRun = true) | |
public void setup(final String deviceType) { | |
this.androidDriverManager = new AndroidDriverManager(); | |
this.androidDriverManager.createAndroidDriverInCloud(); | |
} | |
@AfterClass(alwaysRun = true) | |
public void tearDown() { | |
this.androidDriverManager.quitDriver(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment