Skip to content

Commit 82a29e3

Browse files
authored
Merge pull request #41 from rhisav-25/gradle-support-testng-appium
Add Gradle support for TestNG with Appium
2 parents 594796a + 0790f6c commit 82a29e3

File tree

7 files changed

+171
-3
lines changed

7 files changed

+171
-3
lines changed

.github/workflows/maven-workflow-run.yml

+16
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@ jobs:
6767
cd android/testng-examples
6868
mvn compile
6969
mvn test -P sample-local-test -D"browserstack.app"="./LocalSample.apk"
70+
- name: Run Gradle sample-test for testng Android
71+
run: |
72+
cd android/testng-examples
73+
gradle clean sampleTest
74+
- name: Run Gradle sampleLocalTest for testng Android
75+
run: |
76+
cd android/testng-examples
77+
gradle clean sampleLocalTest -D"browserstack.app"="./LocalSample.apk"
7078
- name: Run mvn test for testng ios
7179
run: |
7280
cd ios/testng-examples
@@ -82,6 +90,14 @@ jobs:
8290
cd ios/testng-examples
8391
mvn compile
8492
mvn test -P sample-local-test -D"browserstack.app"="./LocalSample.ipa"
93+
- name: Run Gradle sample-test for testng ios
94+
run: |
95+
cd ios/testng-examples
96+
gradle clean sampleTest
97+
- name: Run Gradle sampleLocalTest for testng ios
98+
run: |
99+
cd ios/testng-examples
100+
gradle clean sample-local-test -D"browserstack.app"="./LocalSample.ipa"
85101
- if: always()
86102
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
87103
id: status-check-completed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ local.log
55
*.iml
66
**/logs/*
77
.DS_Store
8+
build
9+
gradle
10+
.gradle
11+
gradlew*

README.md

+25-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@ This repository demonstrates how to run Appium tests in [TestNG](http://testng.o
1414
- For Windows, download latest java version from [here](https://java.com/en/download/) and run the installer executable
1515
- 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/)
1616

17-
2. Maven
17+
2. Maven (Only required if using Maven as the build tool)
1818
- If Maven is not downloaded, download it from [here](https://maven.apache.org/download.cgi)
1919
- For installation, follow the instructions [here](https://maven.apache.org/install.html)
2020

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+
2125
### Install the dependencies
2226

2327
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!
4246
### **Run Sample test :**
4347

4448
- 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+
```
4657

4758
### **Use Local testing for apps that access resources hosted in development or testing environments :**
4859

4960
- Simply configure the `browserstackLocal` parameter in the `browserstack.yml` file accordingly in [Android examples](android/testng-examples) or [iOS examples](ios/testng-examples).
5061
```
5162
browserstackLocal: true
5263
```
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
5476
5577
5678
**Note**: If you are facing any issues, refer [Getting Help section](#Getting-Help)

android/testng-examples/build.gradle

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
repositories { mavenCentral() }
6+
7+
dependencies {
8+
testImplementation 'org.testng:testng:7.5'
9+
implementation 'org.seleniumhq.selenium:selenium-java:4.13.0'
10+
implementation 'io.appium:java-client:8.6.0'
11+
implementation 'commons-io:commons-io:2.11.0'
12+
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
13+
implementation 'com.browserstack:browserstack-java-sdk:latest.release'
14+
}
15+
16+
group = 'com.browserstack'
17+
version = '1.0-SNAPSHOT'
18+
description = 'testng-browserstack'
19+
sourceCompatibility = '1.8'
20+
21+
def browserstackSDKArtifact = configurations.compileClasspath.resolvedConfiguration.resolvedArtifacts.find { it.name == 'browserstack-java-sdk' }
22+
23+
tasks.withType(JavaCompile) {
24+
options.encoding = 'UTF-8'
25+
}
26+
27+
tasks.withType(Test) {
28+
systemProperties = System.properties
29+
}
30+
31+
task sampleTest(type: Test) {
32+
useTestNG() {
33+
dependsOn cleanTest
34+
useDefaultListeners = true
35+
suites "src/test/resources/com/browserstack/sample-test.testng.xml"
36+
jvmArgs "-javaagent:${browserstackSDKArtifact.file}"
37+
}
38+
}
39+
40+
task sampleLocalTest(type: Test) {
41+
useTestNG() {
42+
dependsOn cleanTest
43+
useDefaultListeners = true
44+
suites "src/test/resources/com/browserstack/sample-local-test.testng.xml"
45+
jvmArgs "-javaagent:${browserstackSDKArtifact.file}"
46+
}
47+
}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
pluginManagement {
2+
repositories {
3+
mavenCentral()
4+
mavenLocal()
5+
gradlePluginPortal()
6+
}
7+
8+
resolutionStrategy {
9+
eachPlugin {
10+
if (requested.id.id == "com.browserstack.gradle-sdk") {
11+
useModule("com.browserstack:gradle-sdk:1.1.2")
12+
}
13+
}
14+
}
15+
}
16+
rootProject.name = 'testng-browserstack-android'

ios/testng-examples/build.gradle

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
repositories { mavenCentral() }
6+
7+
dependencies {
8+
testImplementation 'org.testng:testng:7.5'
9+
implementation 'org.seleniumhq.selenium:selenium-java:4.13.0'
10+
implementation 'io.appium:java-client:8.6.0'
11+
implementation 'commons-io:commons-io:2.11.0'
12+
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
13+
implementation 'com.browserstack:browserstack-java-sdk:latest.release'
14+
}
15+
16+
group = 'com.browserstack'
17+
version = '1.0-SNAPSHOT'
18+
description = 'testng-browserstack'
19+
sourceCompatibility = '1.8'
20+
21+
def browserstackSDKArtifact = configurations.compileClasspath.resolvedConfiguration.resolvedArtifacts.find { it.name == 'browserstack-java-sdk' }
22+
23+
tasks.withType(JavaCompile) {
24+
options.encoding = 'UTF-8'
25+
}
26+
27+
tasks.withType(Test) {
28+
systemProperties = System.properties
29+
}
30+
31+
task sampleTest(type: Test) {
32+
useTestNG() {
33+
dependsOn cleanTest
34+
useDefaultListeners = true
35+
suites "src/test/resources/com/browserstack/sample-test.testng.xml"
36+
jvmArgs "-javaagent:${browserstackSDKArtifact.file}"
37+
}
38+
}
39+
40+
task sampleLocalTest(type: Test) {
41+
useTestNG() {
42+
dependsOn cleanTest
43+
useDefaultListeners = true
44+
suites "src/test/resources/com/browserstack/sample-local-test.testng.xml"
45+
jvmArgs "-javaagent:${browserstackSDKArtifact.file}"
46+
}
47+
}

ios/testng-examples/settings.gradle

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
pluginManagement {
2+
repositories {
3+
mavenCentral()
4+
mavenLocal()
5+
gradlePluginPortal()
6+
}
7+
8+
resolutionStrategy {
9+
eachPlugin {
10+
if (requested.id.id == "com.browserstack.gradle-sdk") {
11+
useModule("com.browserstack:gradle-sdk:1.1.2")
12+
}
13+
}
14+
}
15+
}
16+
rootProject.name = 'testng-browserstack-ios'

0 commit comments

Comments
 (0)