Jenkins Basics
Install Jenkins Open Command Prompt and Type"java -jar path of jenkins.war file" Create account Use "http://localhost:8080" to access jenkins Steps To Demo Jenkins 1)Create Test Project 1a)Right click on java file and TestNG->Convert to TestNG 2)open cmd and go to project folder ex. cd C:\AndroidDemoworkspace\JenkinsAppium 3)Set Classpath ex. set classpath=C:\AndroidDemoworkspace\JenkinsAppium\lib\*;C:\AndroidDemoworkspace\JenkinsAppium\bin; 4)Run Test ex. java org.testng.TestNG testngappium.xml and Check Test Script working or not. 5)Create batch file . Open notepad file -> enter "java -cp bin;lib/* org.testng.TestNG testngappium.xml" and save as "run.bat" 6)Open Jenkins console and login 7)Create new job. Click on Item ->Name of Item, select freestyle project and save it 8)Click on advanced setting and tick custom workspace and enter project path ex. C:\AndroidDemoworkspace\JenkinsAppium, select build with execute Windows batch file , apply and Save it. 9)Build now and click on build history ->console , We will get output Note:- No UI appears while executing Test case ex browser actions
Run Test through command Line cd C:\AbcAutomation\AbcTestJenkin // set our Project location set classpath=C:\AbcAutomation\AbcTestJenkin\lib\*;C:\AbcAutomation\AbcTestJenkin\bin\example\*; \\ set lib and bin folder path java -cp bin;lib/* org.testng.TestNG testng.xml //execute testng file of project
IPhone and IPad Resolutions (IPhone 8, 8 Plus and IPhone X)
Device Portrait dimensions Landscape dimensions 12.9" iPad Pro 2048px × 2732px 2732px × 2048px 10.5" iPad Pro 1668px × 2224px 2224px × 1668px 9.7" iPad 1536px × 2048px 2048px × 1536px 7.9" iPad mini 4 1536px × 2048px 2048px × 1536px iPhone X 1125px × 2436px 2436px × 1125px iPhone 8 Plus 1242px × 2208px 2208px × 1242px iPhone 8 750px × 1334px 1334px × 750px iPhone 7 Plus 1242px × 2208px 2208px × 1242px iPhone 7 750px × 1334px 1334px × 750px iPhone 6s Plus 1242px × 2208px 2208px × 1242px iPhone 6s 750px × 1334px 1334px × 750px iPhone SE 640px × 1136px 1136px × 640px
Subscribe to:
Posts (Atom)