Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created April 12, 2024 07:26
Show Gist options
  • Save SarahElson/65696a7bd44f17a863039fc3d98d15b4 to your computer and use it in GitHub Desktop.
Save SarahElson/65696a7bd44f17a863039fc3d98d15b4 to your computer and use it in GitHub Desktop.
How To Perform React Native Testing Using Appium
<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