Questions tagged [windows-application-driver]

13 questions
4
votes
1 answer

How to read the value from a TreeItem / DataItem using Windows Application Driver / C#?

I am having trouble accessing the text within a DataItem. Is there a way to get the text ["Repair Exceptions(0)" etc] for each node in the TreeItem using windows application driver? xml
Demodave
  • 6,242
  • 6
  • 43
  • 58
1
vote
0 answers

Facing error while Deploying winui windows application

This app package’s publisher certificate could not be verified. Contact your system administrator or the app developer to obtain a new app package with verified certificates. The root certificate and all immediate certificates of the signature in…
1
vote
0 answers

Windows Application Driver taking long time to detect UI

Windows Application driver is taking long time to detect UI even though it is present right in front of the screen. For the first few launches it works fine and then it gets rapidly slow to detect the UI. Any workaround to fix this issue even after…
1
vote
1 answer

Can't run Windows Application Driver Address 'http://127.0.0.1:4723/' is already in use

Implemented WinAppDriver Trying to start Windows Application Driver C# var p = new Process(); p.StartInfo.FileName = @"C:\Program Files (x86)\Windows Application Driver\WinAppDriver.exe"; p.Start(); Error: Address…
Demodave
  • 6,242
  • 6
  • 43
  • 58
1
vote
1 answer

WinAppDriver - Windows app is launch with additional login screen and I am unable to switch on the login screen

When I launch my windows application, it is launched with two different screens i.e. one is application and one is login window. By default, it remains on the main application and I am unable to switch to the login window. When I am trying to locate…
1
vote
1 answer

Unable to create a new remote session when trying to launch calculator via windows application driver

I am trying to launch the calculator via windows application driver with below versions Selenium standalone : 3.141.59 Java Client : 7.2.0 Appium : 1.15.1 (Running on port 127.0.0.1:4723) Windows application driver : running like this…
chirag25
  • 65
  • 2
  • 13
0
votes
0 answers

WinAppDriver how to select item in ComboBox

I have problem with selecting item from ComboBox, I able to unfold ComboBox but can't select one of the items Simply var comboBEle = winDriver.FindElementByName("Combo1"); comboBEle.Click(); // unfold…
0
votes
0 answers

Selenium Windows App Driver for Chinese Apps

I am trying to write UI automation using Windows Application Driver (Selenium) for Chinese Apps. But looks like inspect tool doesn't recognizes Chinese characters. Is there a way to do UI automation for Chinese Apps like Tencent videos/We chat etc.?
0
votes
1 answer

Updating from appium 1.8.1 to appium 1.22.3

I'm using Appium for desktop to test windows application with my Java code. I decided to update Appium from 1.8.1 to 1.22.3 I download new Node.js. Deleted uninstalled current version of Appium and installed appium with: npm -g appium I also…
0
votes
1 answer

How to connect v4 Print Driver with c# windows application

I want to send documents to my windows application via print driver. to achieve the functionality I've build v4 Print Driver and able to get driver in Print options. now i want to open windows application from Print Driver. I'm unable to find the…
0
votes
2 answers

How can I switch between two windows in appium ( python )

I'm trying to run a test that opens a new window in run time I have a button in my main app that opens a new window with a different name I try to use: desired_caps["app"] = 'myappname' driver = webdriver.Remote( …
0
votes
1 answer

How do I target a combo box out of many combo boxes on screen using Appium

Given: Windows 10 Pro Latest Windows App Driver Latest Appium extension for Visual Studio 2019 Latest WPF Application I have a simple WPF application that just has a combo box on it and I'm just trying to perform a simple test on it. If I use…
Rod
  • 14,529
  • 31
  • 118
  • 230
-3
votes
1 answer

How to write an application to control a driver which is pnp and in kmdf?

so I will detail so that we can easily understand I have to make a driver for a pcie card, I already have the driver that I wrote in kmdf, now I am using this driver, unfortunately I find myself stuck, I have to write an application (which for…