Introducing SNAP - Simplified Next-gen Automation Platform!
Streamline your testing process with our cutting-edge framework. SNAP offers cross-browser support, intelligent automation, and seamless integrations. Experience faster, reliable testing and unlock unparalleled efficiency. Join the future of automation with SNAP!
- Intellij Community Edition
- JDK - 11 (Update compiler to Java 11 on Intellij and Also update the same on global level on your pc)
- Git Bash
- First open the framework in Intellij Community Edition
- Right click build.gradle and click on Build Module "Snap-Appian-Test-Framework"
- After the build is successful
- Go to 'src/test/java/scripts/SampleTest.java' and Right-click on the file
- Click Run "SampleTest"
- Open this project in an IDE, such as IntelliJ Community Edition
- Update configurations:
-
Open file
configs/custom.properties
-
Update Project Related configs:
- TEST_BROWSER = Enter Browser Name on which you want to run your tests - CHROME or EDGE
- TEST_SITE_URL = Enter Website URL you want to test
- Example:
- TEST_BROWSER = CHROME
- TEST_SITE_URL = Present inside the code
-
Update User Related Configs
- TEST_USERNAME = Enter Username to login
- TEST_PASSWORD = Enter Password to login
- Example:
- TEST_USERNAME = Present inside the code
- TEST_PASSWORD = Present inside the code
-
Update Report to Email Related Configs (This feature requires additional security approvals, wont suggest to be used on personal mail ID)
- TEST_REPORT_RECEIVER_EMAIL = Enter Email on which you want to receive test report
- Example:
- TEST_REPORT_RECEIVER_EMAIL = PUT IN YOUR MAIL ID
-
Intellij Specific Settings
- Go to File > Settings > Build, Execution, Deployment > Build Tools > Gradle
- Change 'Run Test Using' to Intellij IDEA
- Change 'Gradle JVM' to 11
-