PropertyPathTypes Enumeration |
Type of the path indicates how to retrieve data from a TestStep
Namespace:
Hummingbird.TestFramework.Automation
Assembly:
Hummingbird.TestFramework.Automation (in Hummingbird.TestFramework.Automation.dll) Version: 1.2.0.0
Syntax [DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
public enum PropertyPathTypes
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration PropertyPathTypes
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class PropertyPathTypes
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type PropertyPathTypes
Members
| Member name | Value | Description |
---|
| PropertyName | 0 |
Gets the value directly from the Property by given name, if the property is not string, the ToString will be called.
|
| XPath | 1 |
This option is available only if The Property is RequestText or ResponseText, considering the value is an XML document.
|
| ObjectPath | 2 |
This options is available only if the Property is RequestObject or ResponseObject, object path can be generated via standard ObjectEditor
|
| JsonPath | 3 |
This option is available only if The Property is RequestText or ResponseText, considering the value is an JSON document.
|
See Also