Run a program with Selenium on Windows, remotely from an Android app? [closed]

0

I'm doing an application on Android , which sends requests to a program, which I have on a virtual machine, with Windows operating system , this program performs a series of Actions with Selenium depending on the request you receive, is a Java Web Application with a servlet , works with glassfish strong>, the question is that it is giving me problems when running Selenium in the Java Web application .

Someone can suggest a better way to do this, is that I think there should be a simpler way and maybe I am complicating my life, any idea is welcome.

Thanks in advance. Regards;)

    
asked by Manuel Moreno 16.04.2018 в 21:40
source

1 answer

0

One option would be for both applications to share a common database, where one (the android app) would leave the requests and the other (the web) would pick them up, process them and, if necessary, leave the result available from the first. If it were a Firebase-like real-time system that synchronizes the updates between all the clients, the request / response would be more agile.

Another option is some push notification system between the two.

    
answered by 17.04.2018 / 09:05
source