amirmiz
amirmiz
@Shakevg thank you for your prompt response. I updated my code using the link your shared and now I use it as follows: public class UnitTest1 { private const string...
@anunay1 I do use winappdriver.exe (tried almost all versions available [here](https://github.com/Microsoft/WinAppDriver/releases). What is the alternative approach?
@anunay1 I switched to Appium. Please confirm I did that correctly: 1. I changed WindowsDriverUri variable from "http://127.0.0.1:4723" to "http://127.0.0.1:4723/wd/hub" 2. I ran WinAppDriver.exe as follows - "winappdriver.exe 127.0.0.1 4723/wd/hub"...
@anunay1 Things are getting complex, though. Recall that I am running a Windows application test. I installed appium and ran it as follows: "Appium -a 127.0.0.1 -p 4723" I then...
Now I run this code: private const string WindowsDriverUri = "http://127.0.0.1:4723"; private static WindowsDriver CreateSessionForAlreadyRunningApp(string appText) { IntPtr appTopLevelWindowHandle = new IntPtr(); foreach (Process clsProcess in Process.GetProcesses()) { if (clsProcess.ProcessName.IndexOf(appText,...
Hello, based on the above correspondence, can someone suggest what am I still doing wrong and might cause this exception?