UI Automation is programmatic/scripted interaction with a graphical user interface, typically for the purpose of testing or accessibility assistance.
0
votes
1answer
32 views
UIAutomation iOS - delete a table cell
I am working on deleting a table cell. I thought it will be done this way.
var myCell = cells["abc"];
var deleteSwitch = myCell.switches()[0];
deleteSwitch.tap();
but, when I tried to ...
0
votes
1answer
10 views
how can i fill in using xpath in cucumber rails
i have a scenario where all the text fields are having common ids.i want to fill in those using xpath as i can access them only using contains method of xpath .for eg:
tr[td//text()[contains(., ...
0
votes
0answers
10 views
What benefits does Cucumber based tests in Calabash have over JS test scripts with Apple's Instruments? [closed]
I find JavaScript easier to use.
I dont have any special liking towards the way Calabash lets me write features in english-like (Cucumber) language and define custom ones with some ruby code.
But ...
0
votes
0answers
13 views
UIAutomation can't access UITableView
This might be a basic question, but I've searched a decent bit and read Apple's documentation as well as several questions here and a few blog posts. So far, I can't find anything to help me out.
I'm ...
1
vote
2answers
836 views
Going to another Activity in Robotium
I'm new to Robotium and Android testing, lately I tested iOS apps. Now I am testing Android application, and on the first Activity I enter email and password, so when it is done, I press the Enter ...
0
votes
1answer
48 views
UI automation in windows phone 8 application
i have searched for automating UI in windows phone 8 applications and i did not get any useful tool or framework for that so is there any framework to automate UI application in windows phone 8?
1
vote
1answer
566 views
Integrating Monkeyrunner with UI Automator
Is it possible to integrate monkey runner with UI Automator. I have imported the Monkeyrunner jar in UI Automator project.But when I run
ant build
Build Fails as it does not recognise any of the ...
0
votes
0answers
10 views
Flex 3 - Is it possible inspect page fields value and click stream events in Adobe Flex from outside of Adobe Container
I have an old Flex 3 based application, which has quite some tabs and text fields that I want to inspect using 3rd party tools. By term "inspect", I mean to see through the runtime value of certain ...
0
votes
0answers
58 views
UI automation of Settings, Iphone
I am trying UI Automation in iphone for connecting to any given wifi network.
I want to automate settings app. It should automatically open up settings->switch on wifi->connect to given ap by ...
0
votes
0answers
9 views
UIAutomation in instruments, screenshot organized in folders possible?
I have a question about screen capture with UIAutomation in Instruments.
Is it possible to take screenshots and organise them in separate folders?
I have an app with different section, and using ...
0
votes
1answer
29 views
Does TestComplete support the use of AutomationProperties in WPF (XAML)
We have UI automation tests running in TestComplete and we want to use the AutomationProperties provided by Microsoft.
I can not see the AutomationId property in the Object Spy of TestComplete, how ...
1
vote
0answers
40 views
How to Select a tree item using UI Automation?
I am trying to select a tree item from an application but get "Operation cannot be performed". I tried using UI Spy to select the tree item and get the same error.
Element : "tree item" "Network"
...
0
votes
3answers
50 views
iOS: GUI Automation Testing and Continuous Integration
I have been writing iOS logic tests using OCUnit and OCMock and it's been working great. I want to start adding two things, GUI automation and continuos integration. I have been evaluating KIF, ...
12
votes
3answers
4k views
How to do UI Automation of Metro-Style Apps?
I've downloaded and installed the windows 8 consumer preview, and I'd like to figure out how to use the UI Automation API's to get data from metro style applications.
Background: I have a lot of ...
4
votes
3answers
4k views
What better tool than Sikuli to use for screen automation on Windows 7 (or preferably multi-platform) [closed]
I'm using Sikuli for Screen automation. i.e for clicking of GUI elements according to their appearance on the screen. This works all right, but Sikuli has one major disadvantage for me:
Slow ...
0
votes
3answers
208 views
How to Automate simple Windows Form Application using MSAA?
I want to automate simple Windows Application using MSAA. I am not getting Idea that how to find the control (say TextBox and Button) and to get value of them(say get value of TextBox and click in ...
0
votes
2answers
27 views
jenkins job not triggering commands and performing ui validations in the targetted machine
I configured a job for doing GUIAutomation(which got developed using java code including running commands and keyboard events) in the targeted machine.
Extra Info:-
I am running a command to launch ...
0
votes
2answers
42 views
How to search for a substring in a string in iOS automation scripting? indexOf() and search() methods are not working
How to search for a substring in a string in iOS automation scripting? indexOf() and search() methods are not working.
0
votes
0answers
21 views
access APNS notifications in UIAutomation testing iOS
I am working on UIAutomation testing for my iPad app. There are APNS notifications received when one user shares files with other user. I need to look at what notifications are there and then tap on ...
0
votes
1answer
292 views
Could someone point me how adbd dump view hierarchy?
I just asked this question: Are there ways to get android app view hierarchy from another android app?
I searched the android source a lot, and read the source code hierarchyviewer, seems that ...
0
votes
1answer
18 views
Transfer session from script to firefox
I'm trying to solve the following problem:
I have a python script that opens a webpage, gets a jsessionid, then posts username and password and the jsessionid and receives back a new jsessionid along ...
0
votes
0answers
37 views
Extract text from Microsoft Word Document (C++)
I am developing a C++ desktop application and need to extract (screen-scrape) text from a Microsoft Word document.
I have been using the UIAutomation interface to obtain text from browsers, and using ...
0
votes
4answers
123 views
Ranorex not able to recognise elements uniquely?
An existing application has an html table, within the body tag, there are multiple td tags with the same name
Ranorex isn't able to all of them to the repository, since all of them have the same ...
0
votes
2answers
1k views
WebDriver How to get selected value from a ComboBox without using Select Class in javascript
I am working on webdriver with Java. Without using Select class of Webdriver, how can I get the selected value from a combobox ?
The Markup i am working on is --
<select name="cmbStateName">
...
0
votes
2answers
29 views
How to know any UI rendering is completed in automation code
I am wanting to know a button is rendered on main window UI or not. This button rendering is depending on server response result (written in Objective C). If server response comes perfectly it becomes ...
2
votes
3answers
366 views
What is UIATargetHasGoneAWOLException while operating iphone with UIAutomation through Instruments.
I am using UIAutomation, through Instruments from Xcode, to do something on iPhone, and got a weird exception:
UIATargetHasGoneAWOLException.
Anybody know what does this exception mean?
1
vote
0answers
53 views
TreeWalker cant see AutomationElement, but UIA Verify can
I'm using the UI Automation Framework and I'm trying to parse my UI using a TreeWalker.
(I have also tried the solutions suggested here but it didn't help much.)
I have a single pane which contain ...
0
votes
1answer
39 views
Match two strings in automation testing UI - iOS
I am writing automation test scripts using Automation tool in instruments for my iPad app. In the login screen, when user taps on login button without entering any information, I display an error ...
0
votes
0answers
19 views
How to know a process is completed in UIAutomation
I m new in UIAutomation. I want to know how will I know if some process is completed in UI. Like I have a login screen and after Login successful I m fetching data from server and then one Alert is ...
2
votes
1answer
50 views
Change international settings during iOS automation
I'd like to have my iOS automation be able to set the devices language before running a specific test. Has anyone solved this problem?
I really wish the iOS automation framework allowed me to hit ...
0
votes
2answers
188 views
Watin behaviour in debug mode is different than in normal mode
Im testing the WatiN library using this simple code:
using (var browser = new IE("http://www.google.de"))
{
browser.TextField(Find.ByName("q")).TypeText("WatiN");
Button btn1 = ...
0
votes
0answers
75 views
Automating tests using the new ios-driver
I’m trying to automate tests on an iphone simulator or device for a web application running in Safari. The documentation for IPhoneDriver says it is now deprecated and to use ios-driver or appium. The ...
1
vote
0answers
74 views
Get url from all open tabs in Google Chrome using VB .Net and UI Automation
Hello I have this code working to get current url on Chrome, but only get active tab url. I need to get url from all open tabs using UI Automation.
My working code:
Function GetChromeUrl(ByVal proc ...
0
votes
2answers
540 views
Does Microsoft UI Automation framework handle Java SWT, C++, Delphi windows or I should use OCR?
I have been working on AutoIT and windows automation for more than 03 Years but mostly on WinForms. AutoIT does not work on WPF or Java SWT UI. I have used White Framework a little bit.
I want to ...
0
votes
2answers
1k views
WPF UI Automation issue
This Thread belong to this
I am asking where do I need to insert the workaround from this
I have a WPF application which has performance issue on some clients with Windows 7. On Windows XP all is ...
0
votes
0answers
37 views
UIAutomation different behavior on iPad and on iPhone
I'm trying to write automated UI test with UIAutomation and found diffence in behavior on iPad and on iPhone. I've got table cell with text field inside and try to reach that field (to insert text ...
0
votes
4answers
96 views
How to record mouse clicks on mac to be replayed by an apple script?
I am writing a script to automate repeatedly registering new users for a website (not boosting metrics, not what you think!). I can boil down the process of registering to a series of mouse clicks and ...
3
votes
4answers
1k views
White UIAutomation click() stops working on different platform
I'm using White to automate the BDD testing of our C# WPF UI.
My first couple of tests are working well on my development machine (running Windows 7). However, when I try and run the same code on ...
1
vote
0answers
31 views
UIAutomator error when runnging tests
I am having big problemes with the uiautomator from google. I have a S3 not rooted and I can't run my tests on the device.
Error:
INSTRUMENTATION_RESULT: shortMsg=java.lang.RuntimeException
...
1
vote
1answer
17 views
Is it possible to store values in another actions localdatasheet?
Following is the scenario, i have 2 action
1. Action_1
a. Action_2
Action_1 store run time data in local sheet and i want to store Action_2 run time data in Action_1 local sheet.
is it ...
1
vote
1answer
101 views
How to change the selection in another application's ComboBox [closed]
I am trying to use Delphi to automate some interactions with another application's GUI. I am, however, not very well-versed in the Windows API, and I seem to be having some difficulties. I need to ...
2
votes
0answers
28 views
Click on IAccessible(MSAA) element without DefaultAction
I've been trying to create an automated test with MSAA on python using pyMSAA
I faced with a problem when a button does not have DefaultAction
b.accDoDefaultAction()
Traceback (most recent call ...
0
votes
0answers
20 views
Delete cells in tableview - Automation testing UI using instruments
I have a table view. I want to delete cells in that tableview. Can someone explain how to do that ?
this is my code but its not working
var target = app.frontMostApp().mainWindow();
//enter edit ...
-1
votes
2answers
47 views
How to compare two strings within a single line in java script
I got the String as :-Time in Queue,Item Type, Status,Type,Name, 22days, Document,Idle,Default,test4.
Now I have to compare status and its corresponding values as idle.
How to pick these two words ...
0
votes
0answers
29 views
Setting names for UITextFields for Automation testing using Instruments - iOS
When I log element tree, I can see that my buttons have names using which I can access them in my scripts. In my app, all text fields don't have names set up. I tried setting up names for them using ...
0
votes
1answer
82 views
selenium webdriver click event is not working for the option selected from select2 dropdown
selenium webdriver click event is not working for the option selected from select2 dropdown.
sel_advertiser = Select(self.driver.find_element_by_id("brand_option"))
for option in ...
0
votes
1answer
72 views
multiple instances of python in separated windows
I'm using PyUserInput and I want to run multiple python scripts in separate windows
is it possible to make the script run inside of a window while still allowing me to do other things with my mouse ...
0
votes
1answer
166 views
Android Web Driver - cannot simulate touch actions
I've downloaded the android_webdriver_library.jar via the Eclipse ADT SDK Manager under Extras/Google Web Driver and reference it in my eclipse project.
How do I simulate a touch action like tapping ...
0
votes
0answers
19 views
IsKeyboardFocusable is true in Inspect Object but always false in my application
I'm learning UI Automation and I found that my "Inspect Object" clone is showing that "IsKeyboardFocusable " is always false even when it is true, all other information is identical (as you can see ...
12
votes
1answer
178 views
What is the correct solution to support IAccesible interface for caret movement in text editors?
I want to implement a text editor from scratch which supports IAccessible interface. I am using MFC and Win32 API.
When the caret position change in the standard text editors like Notepad, the ...




