我正在尝试使用 WinAppDriver 在本地 PC 上测试经典的 Windows 窗体控件应用程序。此测试将在执行代码的同一台 PC 上运行,而不是远程运行。
但是,当尝试使用 WinAppDriver 启动应用程序时,会发生以下情况:
无法连接到远程服务器---> System.Net.Sockets.SocketException: No connection could be made because the target machine主动拒绝它
我发现对于 WinAppDriver,Windows 必须设置为“开发人员模式”,并且我已经将其打开。
这是我到目前为止的代码,现在只使用 Notepad.exe 示例:
Dim appCapabilities As DesiredCapabilities = New DesiredCapabilities()
appCapabilities.SetCapability("app", "C:\Windows\System32\notepad.exe")
Dim NotepadSession As New WindowsDriver(Of WindowsElement)(New Uri("http://127.0.0.1:4723"), appCapabilities)
前任被扔在第三行。