Created
April 12, 2024 07:26
-
-
Save SarahElson/65696a7bd44f17a863039fc3d98d15b4 to your computer and use it in GitHub Desktop.
How To Perform React Native Testing Using 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
<dependencies> | |
<!-- https://mvnrepository.com/artifact/org.testng/testng --> | |
<dependency> | |
<groupId>org.testng</groupId> | |
<artifactId>testng</artifactId> | |
<version>${testng-version}</version> | |
<scope>test</scope> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/io.Appium/java-client --> | |
<dependency> | |
<groupId>io.Appium</groupId> | |
<artifactId>java-client</artifactId> | |
<version>${Appium-java-client-version}</version> | |
</dependency> | |
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>${lombok-version}</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment