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

Object Recognition

AscentialTest recognizes application elements regardless of complexity without coding hacks or reliance on fragile OCR

Drag & Drop

Creating tests with our drag & drop editors is faster and more efficient than recording or scripting

Reusable Elements

Reuse promote faster building and maintenance of tests

No More Test Frameworks

Stop creating test frameworks and focus on your testing

Test Management Tools

Testing projects can get messy without good management tools

Complex Objects

Let AscentialTest do the heavy-lifting when it comes to tables, grids and trees

Integrations

Testing productivity involves meaningful integration with collaboration tools

Powerbuilder Expertise

We are the recognized go-to testing platform for PowerBuilder, we cover PB v6.x all the way to the current version.

Platforms

PowerBuilder

Web Apps

.Net

Omnis

Terminal

PDF

API Testing

Zeenyx Academy

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

Print Friendly, PDF & Email

We started with Omnis and will be working with many other IDEs in the future. Also – if you have developed your own custom elements, this will open the door to automated testing!

Why Automated Testing Tools Don’t Work With Custom Elements

Automated testing tools work with the window manager to locate and recognize application elements such as Edit Fields, PopupLists and PushButtons. On Microsoft Windows, most applications contain elements that are derived from Microsoft Foundation Classes (MFC). Testing tools recognize the class of those elements and can anticipate how they will function. For example, PopupLists are known to contain a list of items from which an item can be selected.

For many different reasons, custom elements have been developed to supplement the standard set of element classes. In some cases a feature might be required that is not provided by a standard element. In others, including application builders such as Delphi, Omnis and PowerBuilder, a set of custom elements are provided to allow applications to be built without requiring advanced development skills. There is a multitude of companies that offer third-party grids, navigators, tables, toolbars, etc. that can be integrated into software applications and there are plenty of home-grown widgets as well. Regardless of the source of the custom elements, they pose a challenge for test automation because their interfaces are unknown.

Some app vendors like PowerSoft recognized the limitation and created a TestAPI to enable test automation, but that is the rare exception. Ambitious testers have attempted to use the low level mouse and keyboard events that most testing tools can but the resulting, tests are fragile and difficult to maintain at best. Note: AscentialTest already supports automated testing for web, .net, PowerBuilder, Delphi, Terminal etc., but Omnis is the anchor IDE for which we built this great custom element extension test kit. But this kit can be applied to any IDE with custom elements, which then allows automated testing.  In sum, if your IDE requires substantial customization or manual testing, our Custom Element Extension Kit is the only way to provide true automated testing for these custom elements. 

How the New AscentialTest Extension Kit Enables Testing Support for Custom Objects

Because we understand the need for test automation and the lack of available options for custom elements, Zeenyx has embraced the opportunity to provide a way for organizations to expose the attributes of those elements so that an automated testing solution is possible.

With the release of AscentialTest v 9.5, Zeenyx announces the availability of a free Custom Element Extension Kit. Through a series of messages between AscentialTest and the target application, the attribute values of custom elements are made available to the testing agent.

To implement the extension kit, the target application is modified to respond to messages sent from the testing agent by sending back a json strings containing attribute values. The level of effort to implement the extension kit is minimal. Here are a few sample messages:

The Capture Object message establishes the class of the custom element. It is implemented once for each custom element class:

Message Zeenyx.CaptureObject

Parameters (none)

Returns JSON string
{
“Name”: “”,
“Class”: “”,
}

There is a subsequent message for each custom element class. Here is the message for a custom popuplist:

Message Zeenyx.CapturePopupList

Parameters (none)

Returns JSON string
{
“SelectIndex”: 0,
“SelectText”: “”,
“Text”: “”,
“Items”: [
{
“Text”: “”,
“Rect”: “”
}
]
}

For this element, the target application provides the index and text of the selected item along with a list of the text and rectangles of the items contained in the list.

The current list of supported custom element classes includes: Breadcrumb, CheckBox, ComboBox, DropdownList, Grid/Table, ListBox, ListView, Menu/MenuItem, PopupList, PushButton, RadioButton, StaticText, TabGroup, TextField, Toolbar, TreeList. If you have an element class that is not listed, just tell us about the requirements and we will construct the appropriate message for you.

Real World Example: Omnis Studio

Omnis Software approached Zeenyx to inquire whether it was possible to provide automated testing support for their customers. The Omnis application is comprised entirely of custom classes. The image below displays the view of the target application prior to implementing the extension kit:

The Elements Panel on the left confirms that AscentialTest does not recognize the class of any of the elements that comprise the sample dialogbox. Each element is listed only as ‘OMNIS_CHILD’, which is the Windows class of the element.

Compare to the image below which displays the Elements Panel after the extension kit was implemented:

The Elements Panel confirms that AscentialTest recognizes all of the elements that comprise the sample dialogbox. Once the extension kit is implemented for a custom element, AscentialTest recognizes and interacts with the element as if it were a standard Microsoft element.

How to: Implementing the Extension Kit

Zeenyx offers the extension kit free of charge. The level of effort to implement a custom element class varies from a few minutes to a few hours, depending on the complexity of the element. Here is what Andrei Augustin of Omnis Software said about implementing the extension kit:

“The level of effort required to implement the messages for a custom element has been relatively straightforward, thanks to the capabilities of AscentialTest software. AscentialTest sends messages directly to our Window procedures, which means our main task was to parse our existing structures into a simple JSON format to inform AscentialTest of the contents. For the simplest controls, this exercise was trivial. Basic components required minimal effort to parse and format into JSON, allowing us to quickly integrate them with AscentialTest. However, for more complex elements, such as lists, the process was slightly more involved. These components required additional parsing logic to ensure all necessary data was accurately represented in the JSON format. Overall, the collaboration between Zeenyx and Omnis has significantly smoothed out the implementation process. Many of the initial challenges have been addressed, setting a clear path for those who follow. We believe this streamlined approach will greatly benefit anyone looking to expose their custom elements to AscentialTest.”

If you are interested in learning more about the Custom Element Extension Kit or would like a free copy, please contact us at [email protected].

 

Share the Post:

Related Content

Instructional Content

PowerBuilder App Testing: What To Know, Which Tools Work

Thought Leadership

Why We Moved to a 6 Month Free Trial

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.