Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Genymotion emulator with selenium

Can I integrate genymotion emulator with selenium? to do testing of Android app. functionality using selenium without device I mean using genymotion emulator.

like image 349
Helping Hands Avatar asked Nov 07 '14 12:11

Helping Hands


People also ask

Is Genymotion better than Android emulator?

Genymotion also runs Robotium tests visibly faster, and with a smoother UI. However, be warned there are some noticable differences between Genymotion and the default Android emulators: You cannot use the special 10.0. 2.2 IP address with Genymotion to access localhost on the machine you are running the emulator from.

Can I run Genymotion without VirtualBox?

It creates virtual devices (android phones). In short, VirtualBox takes some of your computer's memory and allocates that memory to a virtual device. It's all about the concept of virtualization. Without VirtualBox, you can't run Genymotion On macOS, windows, or Linux.

Is Genymotion faster than Android Studio emulator?

Android studio has a default emulator, the AVD. Genymotion is faster than avd, and also better to use.

Which is better Genymotion or Android Studio?

Genymotion is an Android Emulator that is faster than the Android Studio Emulator. Genymotion emulator offers a wide range of virtual devices for development, test, and demonstration purpose.


1 Answers

I got the answer and integrated successfully Genymotion with selenium.

I have done following :

1 - Install genymotion plugin in eclipse

2 - Configure Selendroid JAR file with my project

3 - Specify Genymotion device serial in my program like capa.setSerial("192.168.xx.xxx:xxxx");

4 - Thats it , I able to run genymotion through selenium now.

like image 70
Helping Hands Avatar answered Sep 22 '22 01:09

Helping Hands