-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Gradle support for TestNG with Appium #41
Add Gradle support for TestNG with Appium #41
Conversation
- name: Run Gradle profile sampleLocalTest for testng Android | ||
run: | | ||
cd android/testng-examples | ||
gradle clean sampleLocalTest -Dbrowserstack.app=./LocalSample.apk |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gradle clean sampleLocalTest -Dbrowserstack.app=./LocalSample.apk | |
gradle clean sampleLocalTest -D"browserstack.app"="./LocalSample.apk" |
cd android/testng-examples | ||
gradle clean sampleTest | ||
|
||
- name: Run Gradle profile sampleTest for testng Android |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is profile test?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in maven testing too similarly profile testing was written so tried to make it consistent. now corrected it.
cd ios/testng-examples | ||
gradle clean sampleTest | ||
|
||
- name: Run Gradle profile sampleTest for testng ios |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this test why this using sampleLocalTest but apps are not passed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was a mistake. corrected it
JIRA :- https://browserstack.atlassian.net/browse/AAP-15642
Added build.gradle and settings.gradle for gradle config
Updated Readme and workflow for steps to run tests using gradle.