Integrate Etasq with XQual - Launcher

eTASQ Motion (etasq.jar)

XQual integrates natively with eTASQ Motion — centralize your eTASQ Motion test executions, results, and reports from a single dashboard.
Why QA teams use XQual with eTASQ Motion
  • Centralize eTASQ Motion results alongside 100+ other frameworks in a single dashboard
  • Link test cases to requirements and defects for full traceability
  • Launch, monitor and report across all your frameworks simultaneously
→ Start your free XQual trial

Configuration

The etasq.xml file is a template and must NOT be edited. It's used by the system to build dynamically the form that the user will be able to fill in from the GUI when creating an execution configuration.

Parameter Description
REST Connection
Base URL This must indicate the base URL of your eTASQ Motion server's REST API.
This URL MUST not include an ending slash.

Default value is: http://12.34.56.78:8091/v0
API Key This must indicate the Bearer authentication token to connect to the REST API.

Default value is: <empty>
Timeout (in seconds) This indicates how long the launcher will wait for a result from a keyword execution. If the keyword execution has still a status equal to "CREATED" or "RUNNING" after this timeout has elapsed, the test is set as failed and the launcher will continue executing the next keyword.
Default value is: 3600 (1 hour)

These values can be changed while creating the campaign session from XQual.

Process

With this launcher, the eTASQ Motion robot will execute the keywords as they are defined in the testcase's procedure.
Each testcase has a procedure including one or more steps and checks. All are described as plain text and must match a keyword name and optionally some parameter values for this keyword.
Hence, it's pretty easy to describe a step or a check using the format:
	<keyword name>
	- <parameter#1 name> = <parameter#1 value>
	- <parameter#2 name> = <parameter#2 value>
	...
	
For instance:
	Sleep
	- time_ = 15s
	
The passed parameter values will automatically override the default values.