Check the disneyland.spec.js file to see the test cases
├── README.md
├── test
│ ├── pageobjects
│ │ └── disneylandPage.js
│ └── specs
│ └── disneyland.spec.js
├── wdio.conf.js
└── package.json
npm i
npm run wdio
npm install appium --save-dev
npm install wdio-appium-service --save-dev
localhost:4723/wd/hub
{
"appium:deviceName": "emulator-5554",
"appium:deviceOrientation": "portrait",
"appium:appPackage": "com.disney.wdpro.dlr",
"platformName": "Android",
"appium:automationName": "uiAutomator2",
"appium:appActivity": "com.disney.wdpro.park.activities.SplashActivity",
"appium:platformVersion": "13",
"appium:waitForIdle": 0,
"appium:waitForIdleTimeout": 0,
"appium:noReset": true
}
capabilities: [
{
automationName: "uiAutomator2",
platformName: "Android",
platformVersion: "13",
deviceName: "emulator-5554",
deviceOrientation: "portrait",
appActivity: "com.disney.wdpro.park.activities.SplashActivity",
appPackage: "com.disney.wdpro.dlr",
maxInstances: 1,
noReset: true,
},
],
ANDROID-APPIUM is a Free Software: You can use, study share and improve it at your will. Specifically you can redistribute and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.