├── .classpath ├── .project ├── .settings ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs └── org.eclipse.m2e.core.prefs ├── App └── wordpress.apk ├── README.md ├── ServerConfig ├── node1.bat ├── node1.json ├── node2.bat └── node2.json ├── StartHUB.bat ├── TestSuite └── AppiumGrid.xml ├── drivers ├── WordPress_v8.1_apkpure.com.apk ├── chromedriver.exe └── geckodriver.exe ├── pom.xml ├── selenium-server-standalone-3.4.0.jar ├── src └── test │ └── java │ └── com │ └── automation │ ├── baseclass │ └── BaseClass.java │ ├── objects │ ├── HomePageObject.java │ └── LoginPageObject.java │ ├── pages │ ├── HomePage.java │ └── LoginPage.java │ ├── testscripts │ └── LoginTest.java │ └── utlity │ ├── GernalKeywors.java │ └── GlobalParameters.java ├── target ├── classes │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ └── appiumselenium │ │ └── jenkins │ │ ├── pom.properties │ │ └── pom.xml ├── maven-status │ └── maven-compiler-plugin │ │ ├── compile │ │ └── default-compile │ │ │ └── inputFiles.lst │ │ └── testCompile │ │ └── default-testCompile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst ├── surefire-reports │ ├── Regression │ │ ├── Chrome.html │ │ ├── Chrome.xml │ │ ├── Enmulator.html │ │ ├── Enmulator.xml │ │ ├── Firefox.html │ │ ├── Firefox.xml │ │ ├── Real Device.html │ │ ├── Real Device.xml │ │ ├── testng-failed.xml │ │ ├── web.html │ │ └── web.xml │ ├── TEST-TestSuite.xml │ ├── TestSuite.txt │ ├── bullet_point.png │ ├── collapseall.gif │ ├── emailable-report.html │ ├── failed.png │ ├── index.html │ ├── jquery-1.7.1.min.js │ ├── junitreports │ │ └── TEST-com.automation.testscripts.LoginTest.xml │ ├── navigator-bullet.png │ ├── old │ │ ├── Regression │ │ │ ├── Chrome.properties │ │ │ ├── Enmulator.properties │ │ │ ├── Firefox.properties │ │ │ ├── Real Device.properties │ │ │ ├── classes.html │ │ │ ├── groups.html │ │ │ ├── index.html │ │ │ ├── main.html │ │ │ ├── methods-alphabetical.html │ │ │ ├── methods-not-run.html │ │ │ ├── methods.html │ │ │ ├── reporter-output.html │ │ │ ├── testng.xml.html │ │ │ ├── toc.html │ │ │ └── web.properties │ │ └── index.html │ ├── passed.png │ ├── skipped.png │ ├── testng-failed.xml │ ├── testng-reports.css │ ├── testng-reports.js │ ├── testng-results.xml │ └── testng.css └── test-classes │ └── com │ └── automation │ ├── baseclass │ └── BaseClass.class │ ├── objects │ ├── HomePageObject.class │ └── LoginPageObject.class │ ├── pages │ ├── HomePage.class │ └── LoginPage.class │ ├── testscripts │ └── LoginTest.class │ └── utlity │ ├── GernalKeywors.class │ └── GlobalParameters.class └── test-output ├── Default suite ├── Default test.html ├── Default test.xml └── testng-failed.xml ├── Regression ├── Chrome.html ├── Chrome.xml ├── Enmulator.html ├── Enmulator.xml ├── Firefox.html ├── Firefox.xml ├── Mobile.html ├── Mobile.xml ├── Real Device.html ├── Real Device.xml ├── testng-failed.xml ├── web.html ├── web.xml ├── web_FF.html ├── web_FF.xml ├── web_chrome.html └── web_chrome.xml ├── bullet_point.png ├── collapseall.gif ├── emailable-report.html ├── failed.png ├── index.html ├── jquery-1.7.1.min.js ├── junitreports ├── TEST-com.automation.baseclass.BaseClass.xml ├── TEST-com.automation.testscripts.LoginTest.xml └── TEST-com.automation.webtestscripts.LoginTest.xml ├── navigator-bullet.png ├── old ├── Default suite │ ├── Default test.properties │ ├── classes.html │ ├── groups.html │ ├── index.html │ ├── main.html │ ├── methods-alphabetical.html │ ├── methods-not-run.html │ ├── methods.html │ ├── reporter-output.html │ ├── testng.xml.html │ └── toc.html ├── Regression │ ├── Chrome.properties │ ├── Enmulator.properties │ ├── Firefox.properties │ ├── Mobile.properties │ ├── Real Device.properties │ ├── classes.html │ ├── groups.html │ ├── index.html │ ├── main.html │ ├── methods-alphabetical.html │ ├── methods-not-run.html │ ├── methods.html │ ├── reporter-output.html │ ├── testng.xml.html │ ├── toc.html │ ├── web.properties │ ├── web_FF.properties │ └── web_chrome.properties └── index.html ├── passed.png ├── skipped.png ├── testng-failed.xml ├── testng-reports.css ├── testng-reports.js ├── testng-results.xml └── testng.css /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /App/wordpress.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/App/wordpress.apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/README.md -------------------------------------------------------------------------------- /ServerConfig/node1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/ServerConfig/node1.bat -------------------------------------------------------------------------------- /ServerConfig/node1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/ServerConfig/node1.json -------------------------------------------------------------------------------- /ServerConfig/node2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/ServerConfig/node2.bat -------------------------------------------------------------------------------- /ServerConfig/node2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/ServerConfig/node2.json -------------------------------------------------------------------------------- /StartHUB.bat: -------------------------------------------------------------------------------- 1 | java -jar selenium-server-standalone-3.4.0.jar -role hub -------------------------------------------------------------------------------- /TestSuite/AppiumGrid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/TestSuite/AppiumGrid.xml -------------------------------------------------------------------------------- /drivers/WordPress_v8.1_apkpure.com.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/drivers/WordPress_v8.1_apkpure.com.apk -------------------------------------------------------------------------------- /drivers/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/drivers/chromedriver.exe -------------------------------------------------------------------------------- /drivers/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/drivers/geckodriver.exe -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/pom.xml -------------------------------------------------------------------------------- /selenium-server-standalone-3.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/selenium-server-standalone-3.4.0.jar -------------------------------------------------------------------------------- /src/test/java/com/automation/baseclass/BaseClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/src/test/java/com/automation/baseclass/BaseClass.java -------------------------------------------------------------------------------- /src/test/java/com/automation/objects/HomePageObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/src/test/java/com/automation/objects/HomePageObject.java -------------------------------------------------------------------------------- /src/test/java/com/automation/objects/LoginPageObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/src/test/java/com/automation/objects/LoginPageObject.java -------------------------------------------------------------------------------- /src/test/java/com/automation/pages/HomePage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/src/test/java/com/automation/pages/HomePage.java -------------------------------------------------------------------------------- /src/test/java/com/automation/pages/LoginPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/src/test/java/com/automation/pages/LoginPage.java -------------------------------------------------------------------------------- /src/test/java/com/automation/testscripts/LoginTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/src/test/java/com/automation/testscripts/LoginTest.java -------------------------------------------------------------------------------- /src/test/java/com/automation/utlity/GernalKeywors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/src/test/java/com/automation/utlity/GernalKeywors.java -------------------------------------------------------------------------------- /src/test/java/com/automation/utlity/GlobalParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/src/test/java/com/automation/utlity/GlobalParameters.java -------------------------------------------------------------------------------- /target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /target/classes/META-INF/maven/appiumselenium/jenkins/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/classes/META-INF/maven/appiumselenium/jenkins/pom.properties -------------------------------------------------------------------------------- /target/classes/META-INF/maven/appiumselenium/jenkins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/classes/META-INF/maven/appiumselenium/jenkins/pom.xml -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /target/surefire-reports/Regression/Chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/Chrome.html -------------------------------------------------------------------------------- /target/surefire-reports/Regression/Chrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/Chrome.xml -------------------------------------------------------------------------------- /target/surefire-reports/Regression/Enmulator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/Enmulator.html -------------------------------------------------------------------------------- /target/surefire-reports/Regression/Enmulator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/Enmulator.xml -------------------------------------------------------------------------------- /target/surefire-reports/Regression/Firefox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/Firefox.html -------------------------------------------------------------------------------- /target/surefire-reports/Regression/Firefox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/Firefox.xml -------------------------------------------------------------------------------- /target/surefire-reports/Regression/Real Device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/Real Device.html -------------------------------------------------------------------------------- /target/surefire-reports/Regression/Real Device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/Real Device.xml -------------------------------------------------------------------------------- /target/surefire-reports/Regression/testng-failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/testng-failed.xml -------------------------------------------------------------------------------- /target/surefire-reports/Regression/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/web.html -------------------------------------------------------------------------------- /target/surefire-reports/Regression/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/Regression/web.xml -------------------------------------------------------------------------------- /target/surefire-reports/TEST-TestSuite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/TEST-TestSuite.xml -------------------------------------------------------------------------------- /target/surefire-reports/TestSuite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/TestSuite.txt -------------------------------------------------------------------------------- /target/surefire-reports/bullet_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/bullet_point.png -------------------------------------------------------------------------------- /target/surefire-reports/collapseall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/collapseall.gif -------------------------------------------------------------------------------- /target/surefire-reports/emailable-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/emailable-report.html -------------------------------------------------------------------------------- /target/surefire-reports/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/failed.png -------------------------------------------------------------------------------- /target/surefire-reports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/index.html -------------------------------------------------------------------------------- /target/surefire-reports/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /target/surefire-reports/junitreports/TEST-com.automation.testscripts.LoginTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/junitreports/TEST-com.automation.testscripts.LoginTest.xml -------------------------------------------------------------------------------- /target/surefire-reports/navigator-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/navigator-bullet.png -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/Chrome.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/Chrome.properties -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/Enmulator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/Enmulator.properties -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/Firefox.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/Firefox.properties -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/Real Device.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/Real Device.properties -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/classes.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/groups.html: -------------------------------------------------------------------------------- 1 |

Groups used for this test run

-------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/index.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/main.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/methods-alphabetical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/methods-alphabetical.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/methods-not-run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/methods-not-run.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/methods.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/reporter-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/reporter-output.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/testng.xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/testng.xml.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/Regression/toc.html -------------------------------------------------------------------------------- /target/surefire-reports/old/Regression/web.properties: -------------------------------------------------------------------------------- 1 | [SuiteResult context=web] -------------------------------------------------------------------------------- /target/surefire-reports/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/old/index.html -------------------------------------------------------------------------------- /target/surefire-reports/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/passed.png -------------------------------------------------------------------------------- /target/surefire-reports/skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/skipped.png -------------------------------------------------------------------------------- /target/surefire-reports/testng-failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/testng-failed.xml -------------------------------------------------------------------------------- /target/surefire-reports/testng-reports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/testng-reports.css -------------------------------------------------------------------------------- /target/surefire-reports/testng-reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/testng-reports.js -------------------------------------------------------------------------------- /target/surefire-reports/testng-results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/testng-results.xml -------------------------------------------------------------------------------- /target/surefire-reports/testng.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/surefire-reports/testng.css -------------------------------------------------------------------------------- /target/test-classes/com/automation/baseclass/BaseClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/test-classes/com/automation/baseclass/BaseClass.class -------------------------------------------------------------------------------- /target/test-classes/com/automation/objects/HomePageObject.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/test-classes/com/automation/objects/HomePageObject.class -------------------------------------------------------------------------------- /target/test-classes/com/automation/objects/LoginPageObject.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/test-classes/com/automation/objects/LoginPageObject.class -------------------------------------------------------------------------------- /target/test-classes/com/automation/pages/HomePage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/test-classes/com/automation/pages/HomePage.class -------------------------------------------------------------------------------- /target/test-classes/com/automation/pages/LoginPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/test-classes/com/automation/pages/LoginPage.class -------------------------------------------------------------------------------- /target/test-classes/com/automation/testscripts/LoginTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/test-classes/com/automation/testscripts/LoginTest.class -------------------------------------------------------------------------------- /target/test-classes/com/automation/utlity/GernalKeywors.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/test-classes/com/automation/utlity/GernalKeywors.class -------------------------------------------------------------------------------- /target/test-classes/com/automation/utlity/GlobalParameters.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/target/test-classes/com/automation/utlity/GlobalParameters.class -------------------------------------------------------------------------------- /test-output/Default suite/Default test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Default suite/Default test.html -------------------------------------------------------------------------------- /test-output/Default suite/Default test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Default suite/Default test.xml -------------------------------------------------------------------------------- /test-output/Default suite/testng-failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Default suite/testng-failed.xml -------------------------------------------------------------------------------- /test-output/Regression/Chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Chrome.html -------------------------------------------------------------------------------- /test-output/Regression/Chrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Chrome.xml -------------------------------------------------------------------------------- /test-output/Regression/Enmulator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Enmulator.html -------------------------------------------------------------------------------- /test-output/Regression/Enmulator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Enmulator.xml -------------------------------------------------------------------------------- /test-output/Regression/Firefox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Firefox.html -------------------------------------------------------------------------------- /test-output/Regression/Firefox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Firefox.xml -------------------------------------------------------------------------------- /test-output/Regression/Mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Mobile.html -------------------------------------------------------------------------------- /test-output/Regression/Mobile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Mobile.xml -------------------------------------------------------------------------------- /test-output/Regression/Real Device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Real Device.html -------------------------------------------------------------------------------- /test-output/Regression/Real Device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/Real Device.xml -------------------------------------------------------------------------------- /test-output/Regression/testng-failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/testng-failed.xml -------------------------------------------------------------------------------- /test-output/Regression/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/web.html -------------------------------------------------------------------------------- /test-output/Regression/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/web.xml -------------------------------------------------------------------------------- /test-output/Regression/web_FF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/web_FF.html -------------------------------------------------------------------------------- /test-output/Regression/web_FF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/web_FF.xml -------------------------------------------------------------------------------- /test-output/Regression/web_chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/web_chrome.html -------------------------------------------------------------------------------- /test-output/Regression/web_chrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/Regression/web_chrome.xml -------------------------------------------------------------------------------- /test-output/bullet_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/bullet_point.png -------------------------------------------------------------------------------- /test-output/collapseall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/collapseall.gif -------------------------------------------------------------------------------- /test-output/emailable-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/emailable-report.html -------------------------------------------------------------------------------- /test-output/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/failed.png -------------------------------------------------------------------------------- /test-output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/index.html -------------------------------------------------------------------------------- /test-output/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /test-output/junitreports/TEST-com.automation.baseclass.BaseClass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/junitreports/TEST-com.automation.baseclass.BaseClass.xml -------------------------------------------------------------------------------- /test-output/junitreports/TEST-com.automation.testscripts.LoginTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/junitreports/TEST-com.automation.testscripts.LoginTest.xml -------------------------------------------------------------------------------- /test-output/junitreports/TEST-com.automation.webtestscripts.LoginTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/junitreports/TEST-com.automation.webtestscripts.LoginTest.xml -------------------------------------------------------------------------------- /test-output/navigator-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/navigator-bullet.png -------------------------------------------------------------------------------- /test-output/old/Default suite/Default test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/Default test.properties -------------------------------------------------------------------------------- /test-output/old/Default suite/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/classes.html -------------------------------------------------------------------------------- /test-output/old/Default suite/groups.html: -------------------------------------------------------------------------------- 1 |

Groups used for this test run

-------------------------------------------------------------------------------- /test-output/old/Default suite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/index.html -------------------------------------------------------------------------------- /test-output/old/Default suite/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/main.html -------------------------------------------------------------------------------- /test-output/old/Default suite/methods-alphabetical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/methods-alphabetical.html -------------------------------------------------------------------------------- /test-output/old/Default suite/methods-not-run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/methods-not-run.html -------------------------------------------------------------------------------- /test-output/old/Default suite/methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/methods.html -------------------------------------------------------------------------------- /test-output/old/Default suite/reporter-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/reporter-output.html -------------------------------------------------------------------------------- /test-output/old/Default suite/testng.xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/testng.xml.html -------------------------------------------------------------------------------- /test-output/old/Default suite/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Default suite/toc.html -------------------------------------------------------------------------------- /test-output/old/Regression/Chrome.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/Chrome.properties -------------------------------------------------------------------------------- /test-output/old/Regression/Enmulator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/Enmulator.properties -------------------------------------------------------------------------------- /test-output/old/Regression/Firefox.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/Firefox.properties -------------------------------------------------------------------------------- /test-output/old/Regression/Mobile.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/Mobile.properties -------------------------------------------------------------------------------- /test-output/old/Regression/Real Device.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/Real Device.properties -------------------------------------------------------------------------------- /test-output/old/Regression/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/classes.html -------------------------------------------------------------------------------- /test-output/old/Regression/groups.html: -------------------------------------------------------------------------------- 1 |

Groups used for this test run

-------------------------------------------------------------------------------- /test-output/old/Regression/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/index.html -------------------------------------------------------------------------------- /test-output/old/Regression/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/main.html -------------------------------------------------------------------------------- /test-output/old/Regression/methods-alphabetical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/methods-alphabetical.html -------------------------------------------------------------------------------- /test-output/old/Regression/methods-not-run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/methods-not-run.html -------------------------------------------------------------------------------- /test-output/old/Regression/methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/methods.html -------------------------------------------------------------------------------- /test-output/old/Regression/reporter-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/reporter-output.html -------------------------------------------------------------------------------- /test-output/old/Regression/testng.xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/testng.xml.html -------------------------------------------------------------------------------- /test-output/old/Regression/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/toc.html -------------------------------------------------------------------------------- /test-output/old/Regression/web.properties: -------------------------------------------------------------------------------- 1 | [SuiteResult context=web] -------------------------------------------------------------------------------- /test-output/old/Regression/web_FF.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/web_FF.properties -------------------------------------------------------------------------------- /test-output/old/Regression/web_chrome.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/Regression/web_chrome.properties -------------------------------------------------------------------------------- /test-output/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/old/index.html -------------------------------------------------------------------------------- /test-output/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/passed.png -------------------------------------------------------------------------------- /test-output/skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/skipped.png -------------------------------------------------------------------------------- /test-output/testng-failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/testng-failed.xml -------------------------------------------------------------------------------- /test-output/testng-reports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/testng-reports.css -------------------------------------------------------------------------------- /test-output/testng-reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/testng-reports.js -------------------------------------------------------------------------------- /test-output/testng-results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/testng-results.xml -------------------------------------------------------------------------------- /test-output/testng.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeautomationlearning/AppiumGrid/HEAD/test-output/testng.css --------------------------------------------------------------------------------