Understanding TestArchitect

What You Will Learn

  • A quick overview of the core concepts in TestArchitect

TestArchitect IDE

TestArchitect IDE or TestArchitect Client is the main UI interface that you use to compose tests using keywords (actions). You can also use TestArchitect IDE to capture element locators and store them in Interface Entities so that TestArchitect Automation understands how to look for certain UI elements on screen. Unlike other tools, TestArchitect IDE offers a spreadsheet interface that is familiar and productive to almost every computer user.

TA-IDE.png

Test Authoring Style

TestArchitect supports test automation development in Keyword-Driven Testing, specifically Action-Based Testing. The image below illustrates the relationships between core concepts in Action-Based Testing.

abt-explained.png

Test Modules

Test Modules contain the test cases that share the same test objectives. Each test case inside a test module can be interdependent or independent. Choosing which style to design your tests totally depends on you. The below image illustrates a test module called Action Based Testing in TestArchitect. The first test case in this test module (TC 01) tries to rent one car and checks whether the total payment is calculated correctly.

test-module.png

Actions

Actions are the keywords that make up test cases in test modules. You can reuse +400 prebuilt actions of TestArchitect such as click, enter, type, move mouse, etc. or build your own user-defined actions. The below image shows the content of a user-defined action named login which keys in username and password then clicks the Login button.

action.png

Interface Entities

Interface Entities store element locators that help TestArchitect to find such elements on screen. For instance, you want to capture a button on the GUI of a web app, you could use Chrome's POM Builder extension or TestArchitect's Interface Viewer to find the best XPath for that button. Then, you'll store that XPath in an interface entity inside TestArchitect.

interface-entity.png

TestArchitect Controller

TestArchitect Controller is an independent component of the TestArchitect eco-system that executes your Action-Based Testing tests. Once a TestArchitect Controller triggers a test run, it consumes one Agent license. You can purchase and trigger as many Controllers as possible depending on your execution needs.

deployment.jpg

TestArchitect Repository Server

TestArchitect Repository Server stores all TestArchitect repositories that can be shared among your team. One repository may contain more than one test project. Each test project stores your test modules, actions, interface entities, data sets and other test assets.

repository-projects.png
Last Updated: 5/28/2019, 10:04:44 AM