Open
Description
Hi i have automated a Windows application suing WinAppDriver and it is working absolutely fine. Now i am trying to open WinAppDriver.exe from my java code by using ProcessBuilder class here is the code :
ProcessBuilder p = new ProcessBuilder();
p.command("C:\Users\Administrator\WinAppDriver\WinAppDriverTool\WinAppDriver.exe");
Process process = p.start();
it is also working good and launches the winappdriver.exe, and i am also able to open the application but after that it is no working, neither it is failing nor working.