- configure your agents
- monitor and recover your agents
- monitor the execution of TestEvents
- cancel the execution of TestEvents
Sunday, 21 April 2024
Tosca Distributed Execution SetUp
Monday, 15 April 2024
What are the components of TBox?
Tosca XScan:
To assist you in identifying controls in your test application, Tosca XScan provides various identification options. Tosca XScan identifies controls based on their attributes, the default identification method. If controls cannot be uniquely identified by their controls, there are additional ways to identify them.
Controls can be identified in the following ways:
- Identify controls by properties,
- Identify controls via anchor,
- Identify controls by index,
- and Identify controls via an image.
Tosca XML Engine:
Tosca XML Engine 3.0 allows you to modify, create, validate, and verify XML structures. XML elements, CDATA sections, and XML declarations can all have their properties, values, and comments guided at the same time. The Tosca XML Engine 3.0 is included in the basic installation of Tricentis Tosca.
Tosca XBrowser Engine:
Tosca XScan allows you to construct XBrowser Modules for web application testing. You'll need to install the Tosca Automation Extension for your browser to use the XBrowser Engine. Depending on your browser, you can install it immediately or manually.
Tosca Webservice Engine:
Tosca Webservice Engine 3.0 allows you to steer Web Services using HTTP (HTTP). It's possible to guide web services that use SOAP (Simple Object Access Protocol) or REST Webservices (Representational State Transfer). During the basic Tricentis Tosca installation, the Tosca Webservice Engine 3.0 is deployed automatically.
Tosca Mobile Engine:
Tosca Mobile Engine 3.0 from Tricentis allows you to automate the testing of mobile applications. TestCases can be run on various mobile platforms, devices, and applications utilizing various connection methods. The topics in this chapter cover how to set up and run tests with the Mobile Engine 3.0.
Sunday, 14 April 2024
How many types of Engines available in Tosca
Types of Modules in Tosca
XModules - Use XEngines which are based on the Tosca TBox Framework.
Tuesday, 9 April 2024
Monday, 8 April 2024
What are all the Standard Modules available for TDS in Tosca.
- TestData - Find&provide item
- TestData - Create & provide new item
- TestData - Update item
- TestData - Move item to type
- TestData - Delete item
- TestData - Import items
- TestData - Export items
- TestData - Update type
- TestData - Expert module
What are all the Standard Modules available for EXCEL in Tosca.
- TBox Open Excel Workbook
- TBox Close Excel Workbook
- TBox Define Excel Range
- TBox Create Excel Worksheet
- TBox Excel Range Manipulation
- TBox Run Excel Macro
- TBox Delete Excel Worksheet
- TBox Update Excel Worksheet
- TBox Clear Excel Range
- TBox Excel 1:1 File Compare
What are all the Standard Modules available for SAP in Tosca.
What are all the Standard Modules available for Folder Operations in Tosca.
- TBox Create Folder
- TBox Delete Folder
- TBox Copy Folder
- TBox Folder Existence
What are all the Standard Modules available for File Operations in Tosca.
- TBox Image Compare
- TBox File Existence
- TBox File Compare
- TBox Delete File
- TBox Copy File
- TBox Read/Create File
- TBox Append File
- TBox Move/Rename File
What are all the Standard Modules available for Buffer Operations in Tosca.
- TBox Name To Buffer
- TBox Delete Buffer
- TBox Set Buffer
- TBox Partial Buffer
What are all the Standard Modules available for Windows Operations in Tosca Standard Modules.
What are all the Standard Modules available for Windows Operations in Tosca Standard Modules.
- TBox Take Screenshot
- TBox Clipbord
- TBox Send Keys
- TBox Window Operation
- TBox Scroll Window Operation
- TBox Save As
- TBox Dialog
- TBox Context Menu
Thursday, 4 April 2024
TQL
Tosca Query language (TQL) is one of the most underrated but powerful query language.
The TQL search is context-dependent. This means that the starting point has an effect on the search to be carried out. A search, which is performed on the basis of a project root element, produces different results from one based on the topmost Module folder.
TQL is deeply rooted in Tosca. Even the normal, Simple Search dialog is based on it.
=>SUBPARTS:TestCase[COUNT("ExecutionEntries")==0]
Q. Below query can be used to identify modules which are not linked to any test steps. This can be more useful to identify ideal module and further those can be used or deleted.
=>SUBPARTS:XModule[COUNT("TestSteps")==0]
OR
->COMPLEMENT(=>SUBPARTS:XModule,=>return SUBPARTS:XModule->TestSteps)
Q. Below query can be used to identify test cases which are not linked to any execution list and which are 3 years old. this can be used to identify scripts which are likely to be deleted due to less usages.
->INTERSECTION(->COMPLEMENT(=>SUBPARTS:TestCase,=>return SUBPARTS:TestCase->ExecutionEntries),=>SUBPARTS:TestCase[CreatedAt <= "6/29/2020 2:14:36 AM"])
Q. Below query can be used to identify test cases that don’t have reusable Test block. as per best practice your test script must have good amount of RTBS for quick maintenance (there can be few exceptions).
->COMPLEMENT(=>SUBPARTS:TestCase,=>SUBPARTS:TestStepFolderReference->TestCase))
Q. Below query can be used to identify duplicate modules (specially standard modules) with same name. this further can be used to cleanup duplicate modules.
=>SUBPARTS:XModule[Name == "OpenUrl"]
Q. Below query can be used to identify requirements that are having zero weightage.
=>SUBPARTS:Requirement[Weight==0]