Tagged Questions
The gui-testing tag has no wiki summary.
7
votes
2answers
399 views
Delphi GUI Testing and Modal Forms
In this interesting blog post on delphiXtreme I read about DUnit's built-in GUI testing capabilities (basically an alternative test case class TGUITestCase defined in unit GUITesting that has several ...
7
votes
8answers
2k views
Selenium is to Web UI testing as ________ is to Windows application UI testing
I'm interested in UI testing a client only Java application. What is the most popular framework for doing so? What is your recommended framework? Also, why doesn't Selenium do this (or does it)? It ...
5
votes
3answers
2k views
Automated UI testing a large c# forms app
I am working on a fairly complicated project. We have a c# forms app that has several layers of business logic, communicating with a c++ hardware management layer via a socket interface.
We have ...
4
votes
6answers
3k views
Software Test Automation - Masters Thesis
i am trying to write a thesis about Software Test Automation. I plan to compare the two Approaches of Recording and Programming of Test Scripts, and to discuss about several Automation Frameworks, for ...
3
votes
2answers
247 views
Robotium. In the suite of tests each next test is affected by the previous test
I have multiple UI tests. When I run a single test, everything is OK. But if I run a batch of them (as a part of CI build) test fail, because tests that go first change the state of the application, ...
3
votes
3answers
136 views
Java regression testing (with AWT involved) possible without stealing desktop focus?
I've got regression tests of a Java system that don't bring up any graphical elements but do make use of the AWT event thread. Is there any way I can set things up to run this test suite in the ...
3
votes
2answers
547 views
how to make gui test without displaying in FEST-SWING
Hi guys
In my final project,we are using FEST for gui testing, we have been persuaded fest is powerfull,but displaying of frames everytime is very waste of time ,Also we are using continuum ,fest ...
3
votes
1answer
1k views
Why is TestComplete so slow?
We are using TestComplete from AQTime to test the GUI at client with our Client/Server application. It is compiled with Delphi 2007. The source of client is about 1.4 millions sourcelines. The ...
2
votes
0answers
37 views
WinCE 5.0 UI-Testing with DATK
I'm looking for a way to do automated UI-testing on a Windows CE 5.0 device. It seems that the DATK is the tool that I am looking for (see Automated Test Framework - Windows CE).
I'm using VS 2005, ...
2
votes
1answer
117 views
Why are Coded UI tests important?
I'm wondering why Coded UI tests are so important. It seems like I'm just recording my actions and so obviously everything is going to pass. It kinda seems like it's just me documenting that I did in ...
2
votes
0answers
250 views
Using Win32::GuiTest to get data from grid display control (AfxWnd42s)
I'm currently writing some perl scripts to test one of our GUI applications. I'm using perl's Win32::GuiTest as a foundation, and it's pretty functional for the most part. However, I am now stuck ...
2
votes
0answers
84 views
Please comment on a proposed application tester servlet
While I am waiting on answers to set up a testing system, I'd like to hear your comments on a new architecture. Here goes, with a little background:
I have had the code figured out to track and ...
2
votes
1answer
482 views
Functions triggered by a QTP recovery scenario must reside in their own library?
I inserted a function in one of my function libraries (which are referenced in the test's resources settings). It looks like this:
Public Function NWRecoverOnRunStep ...
2
votes
8answers
479 views
Test Automation for Internet Explorer
Is there any tools for GUI Test Automation for Internet Explorer?
I already use Selenium for Mozilla Firefox, but I also need a tool for IE.
2
votes
2answers
151 views
Are there any good frameworks for automated testing of AWT GUIs?
Are there any good frameworks for automated testing of AWT GUIs?
Integration with JUnit would be a plus.
2
votes
1answer
227 views
Why is a menu item disabled when using SWTBot?
I've written up a GUI test using SWTBot to test the Extract Method refactoring. I use editor.selectRange() to select a statement to extract into a method. But, when I run the unit test, the Extract ...
2
votes
3answers
195 views
Free GUI Tester for manual users
I been trying MS Test manager 2010 and man it sucks bad. It's got huge potential but right now it sucks and is too buggy and crashes on all my development machines every few mins.
So is there any ...
2
votes
7answers
2k views
Automating GUI testing using C#
I am doing on a project to built automatic GUI testing for graphical application in .NET. I will use C# but i am trying to reading to get some ideas. But I don't have any idea on how to record and ...
2
votes
5answers
2k views
How do you test your Cocoa GUIs?
I would like to write some tests for the GUI of my Cocoa program.
Is there any good GUI testing framework for Cocoa apps? The only thing I found is Squish, which, at 2.400€, is well beyond my budget…
...
1
vote
1answer
32 views
How to test Web UI of a Web Browser control inside a WinForms application?
We have a web application that can be tested using Selenium, but that's not enough because the web application will be used inside a WinForms application using the Web Browser control.
The WinForms ...
1
vote
0answers
52 views
Making FEST to wait for the application to load
I am new to FEST based GUI Testing.
MyFrame is the root class for my application.
@Before
public void onSetUp() {
MyFrame frame = GuiActionRunner.execute(new ...
1
vote
3answers
93 views
“Ø” as input in C#
I'm working on automating GUI-testing at my job. I'm currently stuck at something as silly as inserting the character "ø", which is a letter of my language.
The method-call is as follows:
...
1
vote
0answers
51 views
Verifying file download with Selenium
I need to use selenium to verify a download. I need to click on the download file link and check that it is downloadable or not. (Means download is starting or not)
I need to create a simple HTML ...
1
vote
3answers
112 views
GUI testing tool for an C++ application
I want to choose a GUI testing tool for automated testing which with a "record and play" functionality. Could you please suggest me a tool ?
GUI framework is developed for MeeGo platform.
Record and ...
1
vote
1answer
89 views
Are there any sample GUI and FEST code that might help in understanding the framework?
I have been reading a lot and looking at the code to understand how FEST works. Unforunately I could'n find that many sample code online other than:
fest.codehaus.org/Getting+Started
...
1
vote
4answers
413 views
Automated GUI Testing
I am writing a Java Desktop Application (SWING) using Netbeans IDE 6.9. I want to do automated GUI testing. All I know about testing is JUnit tests which won't apply for my GUI application. Is there a ...
1
vote
1answer
424 views
FEST JUnit-Swing testing noobQ: how to test a main class?
Despite reading the tutorial here, I cant seem to understand how to make FEST work with my application.
I have a Swing application in a big class witht a main method, and a couple of SwingWorker ...
1
vote
1answer
441 views
QTP Recovery scenario used to “skip” consecutive FAILED steps with 0 timeout — how can I restore original timeout value?
Suppose I use QTPs recovery scenario manager to set the playback synchronization timeout to 0. The handler would return with "continue with next statement".
I'd do that to make sure that any ...
1
vote
1answer
126 views
Is there a Windowlicker for wxpython?
Having recently read "Growing OO systems guided by tests", I am very impressed with the windowlicker testing utility for java/junit. Basically it wraps the GUI and GUI-interaction with drivers and ...
1
vote
2answers
65 views
.NET Web browser component that allow you to capture the GET and POST data
I'd like to develop an .NET application, where you navigate in a website and the app records the GET and POST data you send to the server, so later on you can reproduce it programatically.
I've been ...
1
vote
2answers
463 views
Selenium Testing
I want to get a bunch of dom-objects with xpath and loop through those to check if they contains a specified text, is this possible in the Selenium IDE or rc?
Perl is my prefered language
XPath would ...
1
vote
5answers
1k views
GUI Automation testing - Window handle questions
Our company is currently writing a GUI automation testing tool for compact framework applications. We have initially searched many tools but none of them was right for us.
By using the tool you can ...
0
votes
1answer
30 views
Eggplant/Sensetalk parsing and separating a string with capitalized words
I'm in need of the ability to parse and separate a text string using Sensetalk (the scripting language the Eggplant GUI tester uses). What I'd like to be able to do is provide the code a text string:
...
0
votes
1answer
35 views
BDD Style UI testing for Compact.Net Forms
I am used to using Cucumber or StoryQ with Selenium/Webdriver (based upon my platform) for automated UI testing in a continous integration environment, I have looked at White for winforms testing ...
0
votes
1answer
249 views
how to get menu label in monkeyrunner.?
I want to get the menu list items from an android phone. Are there any methods in monkeyrunner to fetch this?
0
votes
1answer
115 views
Automated GUI Testing of GIS Application
I'm working as a part-time developer on a GIS application project and my project manager wants to me to do automated testing of project. I tried looking for solutions that can be helpful.
I found ...
0
votes
0answers
37 views
Spurious warnings when taking screen snapshots with FEST-Swing and JUnit
I've asked about this on the FEST users mailing list but not got any response so I wonder if anyone here can help.
I'm using FEST to test a Swing application, and would like to generate a screenshot ...
0
votes
0answers
58 views
How can I exercise the quick assist feature of Eclipse using SWTBot?
I'd like to use SWTBot to inline a local variable via the quick assist menu. My SWTBot test pops up the quick assist menu, but it fails to select the proposal item. I've created a minimal project on ...
0
votes
1answer
81 views
How can I properly select a radio button using SWTBot?
I'd like to use SWTBot to configure and invoke the encapsulate field refactoring. The problem is that the refactoring ignores a radio button selection. I've created a minimal project that demonstrates ...
0
votes
0answers
66 views
Null Pointer Exception in WindowTester Pro! Did anyone have this issue before?
Ok so I have been messing with WindowTester Pro for a while now. I have been using their swing sample code(ContactManagerSwing) to test stuff in there. I'm getting this weird internal ...
0
votes
1answer
80 views
WindowLicker-like framework with SWT support
Is there a testing framework with SWT support which works like WindowLicker? I.e., drives the actual user interface instead of firing events programmatically (like SWTBot)?
0
votes
1answer
259 views
Tcl/Tk - automating GUI testing
I want to automate the testing of my GUI. I went through the following post but if someone can post a sample test code for the following example it would be much easier for me to understand.
The ...
0
votes
1answer
156 views
Looking for recommended Android UI testing tools
I am bashing my way through Android, and am doing some (seemingly) simple stuff with a ListView.
However, my debug tells me that the events are firing and updating adapters etc, but the listview in ...
0
votes
1answer
445 views
UI Testing tools for BlackBerry
Is there any UI Testing tools that work on the BlackBerry platform?
Here's what I know on the subject:
There are a few tools that provide unit testing facilities like J2MEUnit (ported), B-Unit, ...
0
votes
1answer
141 views
is it possible to do low-level pixel inspection with selenium?
is it possible to inspect the value of a specific pixel in the browser rendered page with Selenium? can i get a buffer of the rendered page as an image?
Also, is it possible to send mouse-scroll-down ...
0
votes
1answer
268 views
QTP: Why is a PDF page in an IE not a Page object (as all other pages are)?
When looking at an IE web page with QTP 10, Object Spy reports a Browser object containing a Page object containing other elements. Okay.
Now if I view a PDF in that very same browser, that page is ...
0
votes
2answers
86 views
Obtain control names in Windows application
Haven't found this in my search on Stackoverflow - I know I've seen a tool like it before, for obtaining control names or IDs in Windows apps which can then be used for reference in automated ...
0
votes
1answer
127 views
What is the state of ASP.NET MVC Contrib UI Testing Helpers?
Back in April I was listening to Herding Code episode 77 about MvcContrib.
There Eric Hexter announced UI Testing Helpers as a big upcoming feature.
Now several months later I was searching the web ...
0
votes
1answer
368 views
FEST-swing example doesn't work, frame.isShowing() return false
Try to use the FEST-Swing for Swing GUI testing, and using example from http://easytesting.org/swing/wiki/pmwiki.php?n=FEST-Swing.LaunchFromMain
Unfortunately the frame.isShowing() always return ...
0
votes
2answers
883 views
Handling SWT Dialog boxes while running tests in headless mode using SWTBOT
I am running a Junit test case on my eclipse application that was built using SWT. I am doing GUI testing using SWTBot. So, here is my problem:
editor.bot().button("Make Excel Template").click();
...