Decades of Leadership in the Software Testing Industry

AscentialTest has been forming in the minds of our founders for several years. After building QA Partner/SilkTest at Segue Software in the 90s, they got the opportunity to use their product extensively in the field. As consultants implementing test automation with various tools for more than 10 years, they’ve formed a thorough assessment of the state of the field. What they found surprised them: automated tests were too expensive to build.

Furthermore, the requirement for programming skills to move beyond the superficial tests that can be recorded left out too many members of the team. They also discovered that a large portion of test development time is spent ‘writing code’ to workaround object recognition deficiencies. Some users estimate that time to approach 80%. Clearly this explains why the decision to adopt automation is not always straightforward. With a fresh understanding of the challenges and our heads full of ideas, we’re energized and excited to bring about the next paradigm shift in test automation.

Brian has been working in the field of test automation for more than 30 years. Brian began as a QA Engineer using the testing tools available in the early 1980’s. He joined Segue Software in its infancy and served as the EVP of R&D during that company’s golden years. Brian formed Star Quality, a consulting firm specializing in test automation in the late 90s. After 12 years of experience in the trenches, he’s excited to be building the next generation testing tool that will increase the productivity and and effectiveness of test and development teams.

Dave is a pioneer in the field of automated testing. Dave developed ATF, one of the first automation tools, more than 20 yeas ago. He was a founder and Chief Architect of Segue Software, Inc., the original creators of QA Partner/SilkTest. Dave believes that no testing tool can be easy to use without a solid foundation. That’s why he is committed to providing AscentialTest’s universal agent with the most powerful object recognition engine in the industry.

Pricing Plans - Solo Testers to Large Enterprise Teams

Not seeing a pricing package that fits your needs? Want to compare us directly to a competitor’s offering? Tell us more, let us take a shot at providing a custom or lower cost package.

Subscription

Solo Testers

Starting at $200/mo

“The Selenium Killer”

Subscription

Teams

Starting at $380/mo

Subscription

Unlimited

Starting at $6k/mo

Perpetual License

Teams

Starting at $8.4k

Perpetual License

Unlimited

Other Resources

Upcoming Webinar

Building Reusable Verification Tests

Tue, Jun 25, 2024 10:00 AM - 11:00 AM EDT

The participant will learn:
* How indirection and dynamic instantiation are used to build generic test steps
* How to create universal verification steps and functions
* About built-in functions that provide information about the current state of the target application
* How metadata can be used to set object-related test data
* How to create a test that walks the main menu of an application, opening and closing each dialog

See How We Achieved an 83% Five Star Rating on Gartner

See how AscentialTest compares to the competition, using 18 key features and functions and across 14 different development platforms

  • Supported Platforms (14)
  • Integrated Test Planning
  • Object Recognition
  • Object Repository
  • Test Frameworks
  • Foreign Language UX
  • Drag Generations of Actions
  • Reusable Steps
  • Scripting
  • Manual Testing
  • Parallel Execution
  • Integrated Defect Tracking
  • Test Localization
  • Test Portability
  • Test Management
  • Test Execution Management
  • Integrated Version Control
  • Integrated Test Management

Eggplant

Gartner 5 Star Reviews:

0 %

TestComplete

Gartner 5 Star Reviews:

0 %

Tosca

Gartner 5 Star Reviews:

0 %

Ranorex Studio

Gartner 5 Star Reviews:

0 %

Features

Platforms

Zeenyx Academy

AscentialTest Table Automation Interface

Print Friendly, PDF & Email

AscentialTest provides a table interface that allows the user to easily get, verify, select and set table elements in the target application. This document provides instructions on how to use that interface to generate the following types of actions:

  • Get or verify the contents of a table
  • Get or verify the contents of a row
  • Get or verify the contents of a column
  • Get the number of rows
  • Get the number of columns
  • Select a row and or column
  • Set the value of an element embedded in a column (TextField, PopupList, RadioList, etc.)

The examples in this document use a PowerBuilder data window to demonstrate the AscentialTest table interface, but the concepts described can be generalized to any target application containing a table.

The image below depicts an example table. Notice that it is a PbTable with 126 rows.

Figure 1

For the table called ‘Customers’ as displayed in Figure 1, the metadata has been enabled by clicking the checkbox to the left of ‘CustomersRow’ as shown below in Figure 2. Checking that checkbox provides the mechanism for creating the record to store the contents of a row. It is necessary to use some of the features described below.

Figure 2

Getting the contents of a table

To get the contents of the entire table, use the ‘Get’ radio button in the Actions Panel and select the ‘Value’ property:

Click the ‘Append’ or ‘Insert’ button and the action will be generated in the open step:

Verifying the contents of a table

There are two ways to verify the contents of a table. Which option you choose depends on whether the expected contents of the table will vary.

If the expected contents will vary and you intend to pass in the expected result, use the ‘Get’ action described above and then add a ‘VerifyValue’ action to compare to the expected result:

If the contents of the table will not vary, use the ‘Verify’ radio button in the Actions Panel and select the ‘Value’ property:

Click the ‘Append’ or ‘Insert’ button and the action will be generated in the open step:

The values are captured in an AscentialTest data table. The contents can be viewed by double-clicking on the table icon.

Getting the contents of a row

To get the contents of a row, use the ‘Get’ radio button in the Actions Panel and select the ‘Values’ property. The row can be specified using an index or string selector:

Click the ‘Append’ or ‘Insert’ button and the action will be generated in the open step:

Verifying the contents of a row

To verify the contents of a row, use the ‘Verify’ radio button in the Actions Panel and select the ‘Values’ property. The row can be specified using an index or string selector:

Click the ‘Append’ or ‘Insert’ button and the action will be generated in the open step:

The expected values can be changed or parameterized in the step that contains the verify action.

Getting the contents of a column

To get the contents of a column, use the ‘Get’ radio button in the Actions Panel and select the ‘Text’ property:

Click the ‘Append’ or ‘Insert’ button and the action will be generated in the open step:

One change needs to be made because of a type conversion issue that will be resolved at some point in the future. Here is an easy workaround. Simply cast the return to a List<String>:

Verifying the contents of a column

To verify the contents of a column, use the Actions Panel as described above to generate a ‘Get’ action and then add a ‘VerifyValue’ to compare the actual to the expected results:

Getting the number of rows and columns in a table

To get the number of rows or columns in a table, use the ‘Get’ radio button in the Actions Panel and select either the ‘NumRows’ or ‘NumCols’ property:

Click the ‘Append’ or ‘Insert’ button and the action will be generated in the open step:

Selecting a row in a table

Currently, selection of a row in a table results in the error: AgentScrollException: ScrollBar event failed. This problem will be resolved in an upcoming release of AscentialTest. Please refer to the next topic, ‘Selecting a row/column in a table’, for a workaround.

Selecting a row/column in a table

To select a column in a row, use the ‘Event’ radio button in the Actions Panel and specify the row using either an index or string selector.

Click the ‘Append’ or ‘Insert’ button and the action will be generated in the open step:

Setting the value of a control embedded in a table cell

Table cells often contain input elements like TextField, PopupList, RadioList, etc. The example below displays a PbTextField inside of a PbColumn in a PbTable:

To set the value of an input element in a table cell, use the ‘Set’ radio button in the Actions Panel and specify the row using either a selector or an index.

Click the ‘Append’ or ‘Insert’ button and the action will be generated in the open step:

If the snapshot contained a value in the field to be set, that value will be captured as the input value. The value can either be changed or parameterized in the step where the action has been generated.

If you have any questions about interfacing with tables, please contact Zeenyx Support at [email protected] for assistance.

 

Share the Post:

Related Content

Instructional Content, Thought Leadership

It’s Finally Here: A Custom Elements Kit for Automated Testing

Instructional Content

PowerBuilder App Testing: What To Know, Which Tools Work

Instructional Content, Thought Leadership

A Thousand G2 “Dislikes” (Part 2): Testing Tools Have Speed Issues

Instructional Content, Thought Leadership

A Thousand G2 Reviews Later: Software Testing Tools Are Too Expensive

Get Started Today: 6 Month Free Trial

Click here to download the Host ID generator. The download package includes full instructions. Please send us your details below to speed the process along.

Get a Competitive Quote

Our Distribution and Consulting Partners

Appeon

Cigniti

Loop Software

Marlabs

Matryxsoft Tech

Novalys

OCS Consulting

Loading...

What We Are Up To Next

TFS/Azure Integration

Check our new Azure extension for executing AscentialTest command lines in the Azure Marketplace.

We look forward to offering additional integration with Microsoft’s Team Foundation Server and Azure through defect tracking and version control soon.

Omnis Studio

Automated testing support for OMNIS Studio is coming soon. All OMNIS elements will be supported including complex grids, list boxes, tables and tree views.

Custom Objects

Add automated testing support easily for your custom application elements by responding to simple test API messages with json strings. This feature will open up the possibility of testing any GUI element and  will be offered free of charge.

Test Debugger

Set breakpoints in your automated tests, view global and local variables and execute statements to make it easier to debug tests running on any of our supported platforms.

Thank you for submitting your inquiry!

We will get back to you ASAP.  We aim to respond to all inquiries within 24 hours.