I have question. I want to automate testing in android browser.
My requirements:
I have JS Test Driver
maven project which needs to be tested in android browser.
So what I want to do is
in maven pom.xml
file instead of pointing to chrome as
<browser.command>C:\Program Files (x86)\Google\Chrome\Application\chrome.exe</browser.command>
Create bat file
which will run command that launch URL link in android emulator browser and point it to that bat file
.
My problem is I don't know what command to write that will lunch particular URL in android emulator browser from command line.
Any suggestions?