Questions tagged [winappdriver]

Windows Application Driver is a service to support Selenium-like UI Test Automation on Windows Applications. This service supports testing Universal Windows Platform (UWP) and Classic Windows (Win32) apps on Windows 10 PCs. When using this tag, also include other tags for the specific components you are using, e.g. the programming language you're using like c#, python or java, selenium and selenium-webdriver and maybe specify the controls like xpath

Access the official GitHub with guides and samples.

286 questions
0
votes
1 answer

Why MoveToElement no response

I try to move mouse to element by moveToElement, but it doesn't work. The code is as follows Actions action = new Actions(driver); action.MoveToElement(element); action.Perform(); I think the element is found, because element.Click() is work P.S.…
Joe
  • 1
  • 1
0
votes
1 answer

Does WinAppDriver provide any Authentication mechanism and/or HTTPS connection?

I am currently working with Appium and WinAppDriver in order to perform tests on Windows Desktop applications. Using WinAppDriver is pretty straight forward, it provides a REST API that listens on http://localhost:4327 by default. Going further in…
FrankelStein
  • 907
  • 2
  • 13
  • 30
0
votes
1 answer

Getting BSOD After When Trying To Print The Next Process Name In LIST_ENTRY List

I am trying to print the next process name after my process in the LIST_ENTRY list. But I am always getting BSOD. #include #include #include void SampleUnload(_In_ PDRIVER_OBJECT DriverObject) { …
tantan
  • 15
  • 4
0
votes
1 answer

How to use WinAppDriver to locate elements on Modal window of Modal window

I'm trying to automate a Windows Printer Driver Application on windows 10 pro with newest WinAppDriver v1.2.1.WinAppDriver. The test script cannot locate any element on the Preferences Window, which is a Modal window's Modal Window. The test…
lw x
  • 1
  • 3
0
votes
1 answer

WinAppDriver / AZERTY Keyboard : sendkeys() doesn't send correctly the numbers

I try to use WinAppDriver for my UI test. Sendkeys() sends QWERTY txt, while I use AZERTY layout. I manage to relace characters this way but it doesn't work for numbers: public static async Task SendKeyAndWait(this WindowsElement…
0
votes
0 answers

An unknown server-side error occurred while processing the command. Original error: Failed to locate opened application window with appId

Class Initialization method xxxxx.Features.PublicAppFeature.FeatureSetup threw exception. OpenQA.Selenium.WebDriverException: OpenQA.Selenium.WebDriverException: An unknown server-side error occurred while processing the command. Original error:…
0
votes
2 answers

WinAppDriver: org.openqa.selenium.SessionNotCreatedException: Unable to create a new remote session

I am trying to automate tests in a desktop application developed in Delphi, using WinAppDriver. Programming language: Java 1.8.0_281 IDE: Eclipse, Luna Service Release 2 (4.4.2) selenium-server-standalone-3.141.59.jar Appium:…
Lawrence
  • 29
  • 1
  • 6
0
votes
1 answer

RPA/Selenium to Perform TIN Matching

I am trying to automate a process where I am verifying a TIN (tax id number) on the IRS website. I thought it would be easy but when I run my test - the IRS website gives me a “technical error” code 4405. If I do it manually it’s no issue. I tried…
0
votes
1 answer

WinAppDriver and SyncFusion GridGroupingControl

I am trying to use WinAppDriver to automate reading/writing to a SyncFusion control: GridGroupingCOntrol. The UIRecorder tool is not able to extract xpaths for elements inside the control, nor can winappdriver see them. Does anyone know a workaround…
user1709356
  • 335
  • 3
  • 18
0
votes
1 answer

WinAppDriver, clickOnce application launches a dialog - issues finding the app

I'm looking at using Python and WinAppDriver to automate a clickonce application. When the application starts, I get a dialog with a yes and no button on screen. from appium import webdriver class TestStuff(unittest.TestCase): @classmethod …
Joseph
  • 541
  • 1
  • 4
  • 31
0
votes
0 answers

Running WinAppDriver programmatically in TestNG and POM automation framework

Background: I have an automation framework setup for Windows Applications using WinAppDriver, TestNG and POM. As we know, for WinAppDriver we need to run the server manually before running the tests on- http://127.0.0.1:4723/. I am trying to run…
0
votes
0 answers

Appium WinAppDriver FindElement not working. Error 400, bad request

I am creating a proof of concept UI Automation test to demo. When I use the inspect tool view the text box I want to input into the AutomationID is set to "Memery". I have written the following code: namespace Tests { [TestClass] public…
0
votes
1 answer

How to switch between window and context in a windows app automation testing

Can anyone help me on the tech stack, I'm writing an automation testing for an electron app, that loads pages in the webview. So, I've to switch between the window and the webview. I find Appium but seems the context switch is not supporting in…
0
votes
1 answer

Winappdriver findElement - NodeJS

am learning winappdriver and I try to run the below example. let driver = new WindowsDriver(); await driver.createSession(defaultCaps); let element = await driver.findElement('//*[@ClassName="Edit"]'); but no matter how I use findElement, I…
0
votes
1 answer

How to launch the RCP Eclipse based Application exe file through winapp driver in selenium?

I'm trying to automate the windows based application which is developed using RCP Eclipse. I'm using WinApp driver to launch the application and automate using selenium. I'm not able to launch the application , I'm not getting any error for…
Anita
  • 1
  • 1