You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+25-3
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,14 @@ This repository demonstrates how to run Appium tests in [TestNG](http://testng.o
14
14
- For Windows, download latest java version from [here](https://java.com/en/download/) and run the installer executable
15
15
- For Mac and Linux, run `java -version` to see what java version is pre-installed. If you want a different version download from [here](https://java.com/en/download/)
16
16
17
-
2. Maven
17
+
2. Maven (Only required if using Maven as the build tool)
18
18
- If Maven is not downloaded, download it from [here](https://maven.apache.org/download.cgi)
19
19
- For installation, follow the instructions [here](https://maven.apache.org/install.html)
20
20
21
+
3. Gradle (Only required if using Gradle as the build tool)
22
+
- If Gradle is not downloaded, download it from [here](https://gradle.org/releases/)
23
+
- For installation, follow the instructions [here](https://gradle.org/install/)
24
+
21
25
### Install the dependencies
22
26
23
27
To install the dependencies for Android tests, run :
@@ -42,15 +46,33 @@ Getting Started with Appium tests in TestNg on BrowserStack couldn't be easier!
42
46
### **Run Sample test :**
43
47
44
48
- Switch to one of the following directories: [Android examples](android/testng-examples) or [iOS examples](ios/testng-examples)
45
-
- Run the following maven command `mvn test -P sample-test`
49
+
-**For Maven:** Run the following command to execute tests in the Maven environment:
50
+
```sh
51
+
mvn test -P sample-test
52
+
```
53
+
- **For Gradle:** Run the following command to execute tests in the Gradle environment:
54
+
```sh
55
+
gradle clean sampleTest
56
+
```
46
57
47
58
### **Use Local testing for apps that access resources hosted in development or testing environments :**
48
59
49
60
- Simply configure the `browserstackLocal` parameter in the `browserstack.yml` file accordingly in [Android examples](android/testng-examples) or [iOS examples](ios/testng-examples).
50
61
```
51
62
browserstackLocal: true
52
63
```
53
-
- You can use the `LocalSample` app provided in both folder [Android examples](android/testng-examples) or [iOS examples](ios/testng-examples) to run your test. Change the app parameter in the `browserstack.yml` file and run the tests with the following command: `mvn test -P sample-local-test`
64
+
- You can use the `LocalSample` app provided in both folder [Android examples](android/testng-examples) or [iOS examples](ios/testng-examples) to run your test. Change the app parameter in the `browserstack.yml` file.
65
+
66
+
- **For Maven:** Run the following command to execute tests in the Maven environment:
67
+
```sh
68
+
mvn test -P sample-local-test
69
+
```
70
+
- **For Gradle:** Run the following command to execute tests in the Gradle environment:
71
+
```sh
72
+
gradle clean sampleLocalTest
73
+
```
74
+
75
+
-similarly for gradle you can do :- gradle clean sampleLocalTest
54
76
55
77
56
78
**Note**: If you are facing any issues, refer [Getting Help section](#Getting-Help)
0 commit comments