Questions tagged [ui-automation]

UI Automation is programmatic/scripted interaction with a graphical user interface, typically for the purpose of testing or accessibility assistance.

UI Automation is programmatic/scripted interaction with a graphical user interface, typically for the purpose of testing or accessibility assistance.

Examples of Stand-Alone UI Test Tools

Examples of UI Test Frameworks/Libraries

  • Microsoft UI Automation Framework (Win32/WinForms/WPF)
  • Scirocco (Android)
  • Maveryx (Swing)
3757 questions
1
vote
1 answer

UI Automation Control Desktop Application and Click on Menu Strip

I am using UI Automation to click on a Menu Strip control. I have already pre filled the textboxes and can now invoke the button as well. But I would like to traverse to the Menu Bar select an option lets say File which should open its sub menu…
Faran Saleem
  • 404
  • 1
  • 7
  • 31
1
vote
3 answers

Katalon with GitLab CI, katalon is not recognized as an internal or external command

I am trying to setup a simple TESTSUITE with katalon to run automatically on Gitlab but I keep hitting this error : katalon is not recognized as an internal or external command when i run this script: I have followed this tutorial. And tried using…
1
vote
1 answer

UI Automation, Ribbon Control and Automation Anywhere 11 in WPF

I am building a new bot in Automation Anywhere 11 and I have found recently a tricky situation when I'm trying to automate the Windows Ribbon. If I have only one tab everything works as expected and I can identify all buttons inside, but if I have…
Federico Navarrete
  • 3,069
  • 5
  • 41
  • 76
1
vote
0 answers

UI Automation for non-WPF or Win32 applications with C#

In short: I want to use UI Automation in FL Studio 20 using C#. I know there are a lot UI automation frameworks out there. Currently, I'm using Teststack.White but this framework is made for Win32, WinForms, WPF, Silverlight and SWT based…
Kevin Mueller
  • 628
  • 3
  • 10
  • 23
1
vote
0 answers

e2e tests are failing in docker, but passing locally

I am trying to run my e2e tests in docker image via circle ci. Out of 7 tests, 6 tests are failing and 1 test is passing. But when I ran them locally all tests are passing. This is the error I am getting ✗ Should Display Dashboard Header and Loan…
user10251019
1
vote
0 answers

Not able to find child component on shallow/mount , after adding React UID

For UI automation, I am trying to add unique id for React component. before adding the ID, my test cases are [passing for finding child component. but after adding id with: { (id =>
Snehal
  • 23
  • 2
1
vote
1 answer

How to provide nested folder path in testcafe commandline?

I'm unable to provide nested directory path in testcafe command line I have created different directories under the test folder to consolidate different type of test Example: I have folder "BVT" and "UnitTest" under test folder Test -> BVT Test ->…
1
vote
1 answer

How to reduce UI tests in Test pyramid without affecting the quality of UI delivery

We have a big java based desktop application in our company that we are building test cases for. We want to follow test pyramid approach as: 1) We ask devs write a lot of unit tests (but don't verify where they have written good quality unit tests…
1
vote
1 answer

Espresso - How do I target and click on a first item in a ListView

I want to select the first item in a ListView with Expresso. I can't target by text because the list always changes. As well, all items in the list have the same ID and are not unique. I have attached a screenshot of how this view looks. How do I…
1
vote
0 answers

How to click each item of recycler view of android app using appium test case

How to click each item of recycler view of android app using appium test case. We can click random recycler view of android but haven't found solution to clicking each of the recycler view item .
Yatin
  • 2,969
  • 9
  • 34
  • 68
1
vote
0 answers

Missing import statement - for element (used with in WebStorm with Protractor)

I'm getting this WebStorm warning: Method expression is not of Function type. Missing import statement. Insert 'import {element} from "Protractor"' I am not getting the warning for the element.all shown here: localB.patientData = function(b, no)…
1
vote
0 answers

How to fix List Box returning null value using UIA wrapper

I want to access text values from a List BOX (pywinauto uia wrapper)that is nested inside LIST view inside the application used. code snippet: #upper…
user3664681
  • 171
  • 1
  • 3
  • 13
1
vote
1 answer

Setting automationIDs across an existing application

If I have an existing WPF application, and I want to assign automationIDs to the entire application where they aren't set, what's a good way to do that (for controls that aren't dynamically added)? Some sort of script that goes through all the xaml…
user11302188
  • 73
  • 1
  • 4
1
vote
1 answer

How to get hidden/private UI element from UIAutomation, I can see it in Spy++ but can't get to it in code, only it's parents and siblings

I'm trying to use System.Windows.Automation to get to a UI element in VLC media player (specifically the status box in the left-most corner that shows the filename of the video currently being played). I can get the parent element and a sibling…
CHollman82
  • 576
  • 1
  • 8
  • 28
1
vote
1 answer

How to get the xpath for desktop application using winium.desktop driver?

We used inspect.exe to find the elements. We have tried to find the element with ID,NAME and class name for our desktop application but we found id = "", Name ="" and class name = "Text Box". We can use class name,but we have two text boxes with the…
user6264
  • 175
  • 1
  • 7
  • 22