Winium.Desktop icon indicating copy to clipboard operation
Winium.Desktop copied to clipboard

Winium.Desktop is Selenium Remote WebDriver implementation for automated testing of Windows application based on WinFroms and WPF platforms.

Results 112 Winium.Desktop issues
Sort by recently updated
recently updated
newest added

Starting Windows Desktop Driver on port 9999 14:58:52 [DEBUG] Waiting for a connection... 14:58:53 [DEBUG] ACCEPTED REQUEST GET /status HTTP/1.1 14:58:53 [INFO] COMMAND status {} 14:58:53 [DEBUG] RESPONSE: OK: {...

I have following code: @Test public void setup () { DesktopOptions options = new DesktopOptions(); options.setApplicationPath("C:\Windows\System32\notepad.exe"); ``` WiniumDriverService service = new WiniumDriverService.Builder() .usingDriverExecutable(new File("C:\\Winium.Desktop.Driver.exe")) .usingAnyFreePort() .withVerbose(true) .withSilent(false) .buildDesktopService(); WiniumDriver driver...

question

How can I click in the row of dataGridView to select a row? I am using UnitTest in c# - Visual Studio.

We have Desktop App, but it renders only Webview(Chromium) content. All object Spy(UISPY.exe) detect the whole panel as "Chrome Legacy Window". This doesn't allow me to put automate anything using...

Hi Team, I am automating the window application using Java. I am opening multiple window through click button in my windows desktop application. I wanted to switch the window. But,...

I am using c# and nunit, ` [Test] public void installDCA() { var dc = new DesiredCapabilities(); dc.SetCapability("app", @"C:/download/new_installer.exe"); var driver = new RemoteWebDriver(new Uri("http://localhost:9999"), dc); var window = driver.FindElementByClassName("TWizardForm");...

have a simple code which gives a No Such Element Exception intermittently. Sometimes it finds a code,sometimes it is not able to do so. Not sure why winium throws such...

1. Maximize window is not working on one click app(appref-ms), used path as "C://Users//abc///QA.appref-ms" used below, driver.manage().window().maximize(); 2. driver.close(); or driver.quit(); also not working to close the opened application. Please...

My application is built on Microsoft CRM and we access it through Add in available in the Microsoft outlook. I have to enter details in a form which can be...

Hi, I want to check weather the desktop application is responding or not through winium driver. if desktop application is not responding then i want to close the existing session...