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

unable to get test coverage report in Espresso

Unable to get Espresso Code coverage report, i am new to android studio and tried following set up for generating the report . Please find the build.gradle setting: apply plugin: 'com.getkeepsafe.dexcount' apply plugin: 'realm-android' apply…
1
vote
2 answers

How to readout dynamically changing values with screen reader in a Label in WPF application?

I have a WPF application which prints 1 to 50 numbers and both XAML and code are given below. My requirement is to read out the label values with screen reader NVDA every time when a new content is set. My question is how to achieve readout the…
Simant
  • 3,142
  • 4
  • 32
  • 61
1
vote
0 answers

How can we handle Digital Signature in Selenium with Appium

I have a application for testing but in application has Signature Surface also ,how can i automate this application with selenium. application in ionic cordova WebApp platform. Please suggest me that how can i automate this Signature.i also used…
1
vote
1 answer

Get text and caret from a textbox in another application

Background information I am working on a Windows Speech-To-Text application. When speech has been recognized, the text should be inserted into the textbox that currently has keyboard focus (Think Word/Firefox/other applications). To insert the text…
Mr. JWolf
  • 1,375
  • 2
  • 14
  • 33
1
vote
1 answer

“Inspect.exe” can't find some elements on my laptop, why?

I want to automate an application via Pywinauto on my laptop but all the elements are not seen. “Inspect.exe” cannot find some elements of my application on my laptop whilst it finds them on other computers. For example on my laptop “Inspect.exe”…
David Pratmarty
  • 596
  • 1
  • 4
  • 19
1
vote
1 answer

Page Object Model with UIAutomator and Python

Python and UIAutomator I have the following function: class BasePage: def __init__(self, device): self.device = device def click(self, resourceId=None, text=None, className = None, descriptionContains= None, index=None,…
anotherCoder
  • 712
  • 3
  • 11
  • 25
1
vote
0 answers

Control Linux open windows using Python

TLDR: Whats the best way to send keystroke to other windows without losing focus on the current window using python? Im using python to replace the macros and other functions I used to have on windows using AHK. Im already using pyxhook, and…
1
vote
1 answer

What is the standard practice in Page object Model for opening the browser In Automation Testing?

In Page Object Model using selenium, should we open and close the browser for 1) Every test case 2) Every test suit 3) Whole test suit end to end (1 browser instance for all test cases)? Problems with 3rd option are 1) I can't run test cases…
1
vote
2 answers

How to get Selenium C# control names for reporting

I'm wanting to report a line every time my selenium based automation framework clicks on a control. My object repository is storing individual controls like this: public static By ExampleControl = By.CssSelector("sidemenu > ul > li:nth-child(2) >…
Staindz
  • 108
  • 2
  • 9
1
vote
0 answers

iPad Pro Real Device is not listed in Katalon Studio devices

I have setup the environment and also ran xcodebuild but when I try to see my attached iPad Pro on devices list, I don't see it. As suggested in troubleshoot site, the command prints device ID. I have iPad Pro with iOS 11.4.1. MacOS High Sierra…
1
vote
1 answer

Atata iframe SwitchTo method compile error : Using generic type requires 1 type argument

I have created a Frame control - Frame1 under Class1: public Frame<_> Frame1 { get; private set; } And defined Class2 for frame page: public class Class2 : Page where TPage : Page When I call Frame1.SwitchTo() I get a…
1
vote
2 answers

updating automation results to Xray test cases within execution without creating additional test cases

We use Xray for test case management and have automated few test cases. We use jenkins to execute the automated test cases and use the plugin to read the results xml file and update the test run. However, for every automated test case it created a…
1
vote
1 answer

How to automate Mac desktop gui automation

Till now all the queries i posted on stack got very quick response thanks to every one. Suppose i have installed gui application on mac platform and that gui when i click button like connect or any action i do , it will interact with the server. So…
AyrtonSenna
  • 79
  • 11
1
vote
1 answer

using more than one dependency in job gitlab-ci

Gitlab-ci: Here is my pipeline of a project with some stages: stages: - prepare - build - deploy - build_test - test And some stages have more than one job to execute, e.g. using for each oracle database environment (aca, spt,…
Saymon CAO
  • 73
  • 1
  • 10
1
vote
1 answer

Can't click radio button with pywinauto using UIA backend

On the pywinauto documentation it says that you can click a radio button using the click method: I have already had issues using the UIA backend, since it is different to win32. In this case, there seems to be no way to click a radio button. I…
Aric
  • 319
  • 7
  • 27