Questions tagged [qf-test]

QF-Test is a GUI Test Tool for Java and Web.

QF-Test, the successor of the open source tool qftestJUI, is a commercial GUI testing tool. The tool is developed and maintained by the company Quality First Software GmbH (short QFS).

  • Automated regression and load tests for Java Swing, SWT, Eclipse plugins and RCP applications, ULC, CaptainCasa, Applets and WebStart, JavaFX on Windows, Linux, Unix and macOS.
  • Cross-browser web testing of static and dynamic (HTML5 / AJAX) pages with Internet Explorer, Firefox, Chrome, Edge, Safari - on Windows, Linux and macOS, native and via WebDriver.
  • Reliable recognition even of complex and dynamic UI components; Tests are tolerant to GUI changes and thus require little maintenance

Documentation:

14 questions
4
votes
3 answers

Best way to create automated testing in a Java environment

I have been tasked with finding the best way to do integrated unit testing. We have a very large Java EE 5 application (desktop). Right now we use a tool called QF-TEST which is pretty cumbersome for large tests and can be difficult to use (easy…
northpole
  • 10,244
  • 7
  • 35
  • 58
4
votes
1 answer

If statement in QF-test

I am learning QF-test and want to do a simple if statement. If I make a change on this one page it enabled an "Apply" button that I want to click if it becomes enabled. When I check if the button is enabled this is what appears Check boolean:…
user2007843
  • 609
  • 1
  • 12
  • 30
1
vote
2 answers

QF-Test adds wrong properties to the system under test

I'm currently trying to test the UI of an Eclipse RCP application. When executed manually, the application starts fine and can be used correctly. However, when QF-Test launches the application, I get a ClassCastException in a 3pp…
1
vote
1 answer

QF test Dynamic Components whithout IDs

I am testing a Software using Qf test the Components are dynamic and has no ID, we tried xpath but the Html tree is complicated. Do you have any ideas how to handle that in Qf test with step explanation???
B.geziry
  • 21
  • 1
1
vote
3 answers

Strategy for naming swing components

In our Swing application, we are using an automated testing tool in QA (Qf-Test) that works better when the swing components are named. (calling Component.setName). Although their automatic name assignments work reasonably well, we are introducing…
Yishai
  • 90,445
  • 31
  • 189
  • 263
1
vote
2 answers

How can I create a screenshot of the browser with QF-Test?

QF-Test allows me to take a screenshot of the whole desktop with: from imagewrapper import ImageWrapper iw = ImageWrapper(rc) screenshot = iw.grabScreenshot() How can I take a screenshot of only the browser?
Aaron Digulla
  • 321,842
  • 108
  • 597
  • 820
1
vote
1 answer

How to get code coverage for tests run using QF test tool

I use QF test tool (http://www.qfs.de/en/qftest/) to run my integrated UI based tests . Is there any tool which can get code coverage of qft test suites ? Note : I use Sonar (jacoco plugin) to get code coverage for Junit tests . I googled a lot…
0
votes
2 answers

How do I minimize application window in Java swing UI?

I am working with a java swing application. I would like to test a drag and drop feature between two instances of the application. To do that, I need to arrange the two windows so they are both visible on the screen. The "component event: RESIZED"…
0
votes
1 answer

How can I check that my application is shutdown with QFTest?

I check a Java application with QFTest. I need to prove that the HMI is stopped at Shutdown. In QFTest, I created a Jython procédure which try to send a socket to the HMI, if it can't, then it means that the HMI is stopped and then the test is OK.…
Skartt
  • 551
  • 2
  • 7
  • 19
0
votes
2 answers

QF Test how to get JButton background color?

I'm currently creating a script that requires to verify certain button colors. I can't see any procedures/actions that I can use to verify button colors for swing application. Is it possible to get JButton color using Javascript or Python script?
Liyo
  • 19
  • 2
  • 7
0
votes
1 answer

QF-TEST:Button is not clickable in Chrome

I have done recordings on a computer and a couple of tests that runs smoothly .Now i try to run on the same computer but the button is not clickable, it points to some where else on the webpage. The component value is the same . The button…
Moni
  • 19
  • 5
0
votes
1 answer

Unable to break the jython for loop

I am trying to automate component identification using Jython script. The problem is I am unable to stop the iteration once the matching value is reached. The code is: def GetAll(Dialog): ChildItems=Dialog.getComponents() for item in…
0
votes
1 answer

Jython 2.5.1: UnicodeDecodeError

recently I have been trying to parse data from HTML file using Jython scripts in QF-Test 3.5.4 (note that the supported Python version is only 2.5.1 as per release notes for version 3.5.1. - http://www.qfs.de/en/qftest/relnotes.html#3.5.1). Python…
Dan
  • 106
  • 10
-2
votes
2 answers

How to get JRE root path for java 17 using "java -verbose -version"

I have a problem that with my automation script where it needs to get the JRE Root path for java versions. I managed to get the path for java 8 and java 11 using java -verbose -version enter image description here but i cant get anything for java 17…