Hi chaps, thanks for the awesome Appium to make the cross platform automation truly possible and feasible!
I am new to the tool, and trying to work the Appium on Android. I have Node.js set up on a Win 7 machine with Appium listening on the 4723 successfully. The Android emulator is also running on the same machine. In order to have a quick glance the power of Appium, what should I do next?
And, some dummy questions regarding to the code below:
1. What should I use for the abspath in Windows?
2. What are the attributes "app-package" and "app-activity" for exactly? Where can I get the value for those attributes?
==============
desired_caps = {}
desired_caps['device'] = 'Android'
desired_caps['browserName'] = ''
desired_caps['version'] = '4.2'
desired_caps['app'] = os.path.abspath('../../../sample-code/apps/ApiDemos/bin/ApiDemos-debug.apk')
desired_caps['app-package'] = 'com.example.android.apis'
desired_caps['app-activity'] = 'ApiDemos'
==============
Sorry for a list of questions, thanks in advance for any input!