Print Page | Close Window

Object properties changing from version to version

Printed From: One Stop Testing
Category: Testing Tools @ OneStopTesting
Forum Name: QuickTest Pro @ OneStopTesting
Forum Discription: QuickTest Pro is a fresh approach to automated software and application testing that addresses testing needs of both business analysts and Quality Assurance professionals.
URL: http://forum.onestoptesting.com/forum_posts.asp?TID=2684
Printed Date: 19Jul2025 at 7:10am


Topic: Object properties changing from version to version
Posted By: tanushree
Subject: Object properties changing from version to version
Date Posted: 05Oct2007 at 1:08am
If your script shall be compatible with older versions of the AUT as well (as in my case) you need to identify the AUT version somehow. I've got an API method where the AUT return Release and Version #. Then you can implement logic like this:

If AUTVersion <= x Then
Click "property1"
Else
Click "property2"
End If



Print Page | Close Window