Questions tagged [gui-test-framework]

24 questions
8
votes
4 answers

WindowLicker for .NET's WinForms?

Is there anything like WindowLicker(a GUI test framework) but for .NET's WinForms? Thanks
devoured elysium
  • 101,373
  • 131
  • 340
  • 557
7
votes
1 answer

What is required and how to install zucchini framework on Mac OSX?

Zucchini framework seems a promising candidate for quality assurance of iOS user interfaces. However, the installation steps provided on their website assume that most of the prerequisites already exist OR that one is already familiar with the…
Ozair Kafray
  • 13,351
  • 8
  • 59
  • 84
4
votes
4 answers

Rollback Database after running Selenium GUI tests

I am using Selenium GUI tests in a Java Web Application. Since these tests are actually client, how can we rollback database after running a test?
jd466
  • 547
  • 1
  • 6
  • 20
4
votes
1 answer

Check for element to be clickable without an explicit wait time

As stated by the Selenium Documentation we never should mix up explicit and implicit wait times: WARNING: Do not mix implicit and explicit waits. Doing so can cause unpredictable wait times. For example setting an implicit wait of 10s and an…
My-Name-Is
  • 4,814
  • 10
  • 44
  • 84
3
votes
0 answers

Qt Test Simulated MouseEvent not forwared to child widget

I did some survey, if it might be possible to use QtTest to test some of my custom Qt Widgets. I was able to build and run tests and I was also able to simulate events and check them with QSignalSpy. The widgets I'm going to tests are not…
Aleph0
  • 5,816
  • 4
  • 29
  • 80
3
votes
1 answer

Writing message in Coded UI HtmlLogger output file

I am using Coded UI for Automation testing. I have already enabled HtmlLogger in QTAgent32.exe.config file. I am getting the html output file. but I am considering to write some messages in that html output file. I used…
2
votes
1 answer

Create Keywork/Page Object framework: Selenium or Protractor?

My company's web application is Angular based ? Is it a good idea to implement Page Object/Keyword based test automation framework using Protractor ? As of now what I have done it, I have 1 spec file which gets called, which in turn calls a test…
2
votes
1 answer

In QTP 12.51, how to identify dynamical element generated using ajax/jquery form?

In my Datatable three rows present.After clicking on Add button new row is generateed and i need to put input values from datatable. Problem : How to identify field of each row dynamically for inserting values? Script:-- Datatable.GetSheet(5) …
2
votes
8 answers

Test Automation Framework for Web Application using Java

I am beginning to write a Test Automation Framework in Java (language that I am comfortable with) for my Web Application. Currently, it is entirely tested on UI. No Backend / API testing in near sight. I plan to use Selenium Web Driver. This…
1
vote
2 answers

How to write JUnit tests for a function that is only called when the program is run?

I have a Java program that when run, displays a GUI with a button to import a file. I want to write a unit test for the import file method to make sure the method executes all the way through, but that method is only called when the button is…
1
vote
0 answers

Using TUG for Windows. Compilation fails

I'm exploring right now open source tools to test my QT GUI Applications. After some research I found the promising: TUG: GUI Unit Testing library https://github.com/pedromateo/tug_qt_unit_testing_fw Unfortunately, it is a Linux library, but I'm…
Aleph0
  • 5,816
  • 4
  • 29
  • 80
1
vote
2 answers

Test Automation Framework for different types of products

I have read some basic definition of what Test Automation Framework is but I wish to know in easy words and more practical example. Lets say. I own a company that makes different kinds of products made on different platforms for different purposes.…
1
vote
0 answers

GUI Test Automation for Embedded Systems

I am looking for a GUI Test Automation framework for testing GUI on low level embedded system. The GUI will be developed in Peg Pro, I want to automate the GUI flow and test the system and GUI. Please suggest some frameworks to explore
Krishanu
  • 11
  • 2
1
vote
3 answers

How to find Window by variable title using TestStack.White framework?

I am using TestStack.White framework to automate opening new document in MS Word 2013. I am opening Microsoft Word application with: Application application = Application.Launch("winword.exe"); After that, I am trying to get the window by…
1
vote
2 answers

White Automation framework throws an exception when using "White.Core.Desktop" Class

I am using White Framework for automation. when I trying to get desktop instance I got exception "The type initializer for 'White.Core.Desktop' threw an exception." My code looks like : var window = White.Core.Desktop.Instance.Windows().Find(obj =>…
1
2