Overview¶
Using multiple Squish editions in a single test script is possible and this article describes an example setup and work-flows for this utilizing Squish for Qt and Squish for Web, but these instructions generally apply to any combination of Squish editions used in a single test script.
Basic setup¶
Install Squish for Qt.
Install Squish for Web.
Create a Squish for Qt test suite with the Squish for Qt IDE.
Create a Squish for Web test suite with the Squish for Web IDE.
Somehow, share the object map entries across both test suites (See instructions for script-based object maps.
Decide which of the two test suites should be the main test suite. (The remainder of this article assumes a Squish for Qt test suite to be the main test suite.)
Recording¶
Recording in the Qt application¶
Start the Squish for Qt IDE.
Load the Squish for Qt test suite.
Record.
Example recording:
Recording in the Web application¶
Start the Squish for Web IDE.
Load the Squish for Web test suite.
Record.
Example recording:
This recording has to be integrated into the Squish for Qt test suite now, which is a simple copy & paste operation at first:
Then we add these lines (which are the equivalent of "startApplication()" but for the web browser):
So the resulting script looks like this:
As you can see we also modified the startApplication() lines to catch the return values, which are the application context of the Qt and web applications. With these application contexts we can switch between automating each application, should it be required, by using the setApplicationContext() function.
The entries from the scripted object map of the Web test suite must be copied to the scripted object map of the Qt testsuite, otherwise Lookups in the object map will fail for the symbolic names recorded for the Web part.
Replay¶
- Start
squishserver
of Squish for Web on the same port as specified in the startApplication() call that starts the web browser (1234):
Start Squish for Qt IDE.
Load Squish for Qt test suite.
Execute Squish for Qt test suite.
You can switch between application contexts via setApplicationContext():