Im trying to build automation test cases using robot framework for android devices.
I have imported the android library and have installed python on my system.
My code is as follows:
*** Settings ***
Library OperatingSystem
Library Selenium2Library
Library AndroidLibrary
*** Test Cases ***
case1
Start Emulator avd_name='AVD_for_Nexus_5_by_Google',no_window=False, language=en, country=us
Wait For Device timeout=120
Press Menu Button
Stop Emulator
When I try to execute a test case, I get the error:
command: pybot.bat --argumentfile c:\users\kesav\appdata\local\temp\RIDEnhapet.d\argfile.txt --listener C:\Python27\lib\site-packages\robotframework_ride-1.3-py2.7-win32.egg\robotide\contrib\testrunner\TestRunnerAgent.py:52956:False C:\Users\kesav\test [Error 2] The system cannot find the file specified.
I have checked the PATH environment variable, it contains C:\Python27 and C:\Python27\Scripts as well.
Please help!