Nick Abalov
Nick Abalov
@sharwell, any updates on this issue?
In Winium.Desktop driver represents the whole desktop, not only your app under a test. The find method uses depth-first search, meaning that if there are a lot of windows open...
Hello, I assume your are getting the following exception: ``` Unhandled Exception: System.Net.Sockets.SocketException: Only one usage of each socket address (protocol/network address/port) is normally permitted at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)...
I think you got a typo in driver url. It should be `"http://localhost:4444`, not `"http://loclahost:4444`
Programmatic network throttling can be achieved using classes from `%PROGRAMFILES(X86)%\Microsoft XDE\8.1\Microsoft.Xde.Interface.dll](Microsoft.Xde.Interface.dll` ``` cs using Microsoft.Xde.Interface; //... client = AutomationClient.CreateAutomationClient(this.emulatorVm.Name); client.IsNetworkSimulationEnabled = true client.NetThrottlingSpeed = NetworkThrottlingSpeed.NoNetwork; ``` But network throttling will...
Just use `sendKeys` with empty string as parameter. Each `sendKeys` call 'resets' input and sets it to the new value. The driver uses automation pattern to set text on element,...
I will need to reproduce this issue, can you provide minimal XAML needed to create input similar to that with which you have a problem? I am on vacation until...
Could you please provide a bit of XAML to reproduce the numeric input? I was able to successfully input number using `SendKeys` into numeric input created using following XAML ```...
Of course, it would be great if you could just create a minimal app with single input element that you have problem with, so that nothing else gets published.
@Pranodayd any updates on this one?