Run selenium WebDriver scripts on mobile browsers to test a website

Hi all,

I am new to mobile testing. I am looking to run my Web Driver scripts on different IOS and Android devices. All I want is to open a browser and open website (base URL) and run the tests. Has anyone worked on this before? If yes, it would be really helpful if you can provide information how did you setup etc…

Thanks in advance,

Regards,
Sailatha.

Related: android - How to install and run appium in linux? - Stack Overflow

1.1 Understand all about Webdriver (Chromedriver if you want use Chrome)
1.2 Understand Appium (in the doc all seems be well explained, setup, parameters, etc)
2. Create your test in your favorite language
3. Take a look the sample code
3.1 Example of capabilities with Java Simple Appium Test · GitHub
3.2 Good example with Javascript http://sauceio.com/index.php/2012/07/javascript-testing-in-parallel-with-wd-js-and-selenium/
4. Have fun

@juanpicado Many thanks!