Any one with hands on experience on Windows Mobile testing using Robot Framework can give me reference links or some sort of examples to start with it?
Thanks in advance
Any one with hands on experience on Windows Mobile testing using Robot Framework can give me reference links or some sort of examples to start with it?
Thanks in advance
I don't have hands on experience, but a quick search on the internet revealed winium, a driver for selenium.
Translating the example on their page from python to using Selenium2LIbrary should be straight-forward. I can't test this, but using selenium2library to create a connection to the device might look something like this (using the pipe-separated format for clarity):
| | ${capabilities}= | create dictionary | app=C:\\testApp.appx
| | Create webdriver | Remote
| | ... | command_executor=http://localhost:0000
| | ... | desired_capabilities=${capabilities}