WebXML Object
Description
An XML document contained in a Web page.
IMPORTANT
Recording and running steps on this object are supported only for Internet Explorer browsers.
Operations
The sections below list the built-in methods and properties that you can use as operations for the WebXML object.
Note: You can also view a list and descriptions of the WebXML description properties, for use in object repository descriptions, programmatic descriptions, checkpoint and output value steps, and as argument values for the GetTOProperty and GetROProperty methods.
Methods
CaptureBitmap | Saves a screen capture of the object as a .png or .bmp image using the specified file name. |
Check | Checks whether the actual value of an item matches the expected value. |
CheckProperty | Checks whether the actual value of the specified object property matches the specified expected value within the specified timeout. |
ChildObjects | Returns the collection of child objects contained within the object. |
GetAllROProperties | Returns the collection of properties and current values from the object in the application. |
GetData | Returns the XML data contained in the WebXML object as an XMLData object. |
GetROProperty | Returns the current value of the description property from the object in the application. |
GetTOProperties | Returns the collection of properties and values used to identify the object. |
GetTOProperty | Returns the value of the specified description property from the test object description. |
Highlight | Highlights the object in the application. |
Output | Retrieves the current value of an item and stores it in a specified location. |
RefreshObject | Instructs UFT One to re-identify the object in the application the next time a step refers to this object. |
SetTOProperty | Sets the value of the specified description property in the test object description. |
ToString | Returns a string that represents the test object. |
WaitProperty | Waits until the specified object property achieves the specified value or exceeds the specified timeout before continuing to the next step. |
Properties
Exist | Checks whether the object currently exists in the open application. |
Object | Accesses the native methods and properties of the object. |
GetData Method
Description
Returns the XML data contained in the WebXML object as an XMLData object.
Syntax
object.GetData
Return Type
An Object.
IMPORTANT
Once you retrieve the XML object, you can use any of the supplemental XMLData methods and properties on that object. For more information on these objects, refer to the Supplemental section of the UFT One Object Model Reference.
Example
'The following example uses the GetData method to retrieve the 'data in the BookStore XML object and store it in XMLObj. Set XMLObj = Browser("BookStore").Page("BookStore").WebXML("BookStore").GetData()
'The following example uses the GetData method to retrieve the 'XML data from a Web page and store it in an XML file. Set XMLDataObject = Browser("Test Table Component").Page("WebXMLPage").WebXML("http://war/sources/XML/hummers").GetData XMLDataObject.SaveFile "c:\example1.xml"
See also: