Genymotion emulator with selenium

Is it possible to integrate a genymotion emulator with selenium? for testing an Android application. functionality using selenium without a device I mean using a genymotion emulator.

+5
source share
2 answers

I got an answer and successfully integrated Genymotion with selenium.

I have done the following:

1 - Install the genymotion plugin in eclipse

2 - Configure Selendroid JAR file with my project

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

4 - That is, I can run genymotion through selenium now.

+4
source

Can i integrate with xamarine?

I have a xamarin mobile application and I will be automating mobile test cases for the first time.

0
source

Source: https://habr.com/ru/post/1206418/


All Articles