Pakket | mx.automation |
Klasse | public class AutomationID |
Overerving | AutomationID Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
property_1_name{property_1_value property_1_type}property_2_name{property_2_value property_2_type}|property_1_name{property_1_value property_1_type}property_2_name{property_2_value property_2_type}
Consider a Flex application with following hierarchy:
Application -- > Accordion -- > HBox -- > Button
The AutomationID of the button would consist of four AutomationIDParts, one for application, one for Accordion, one for HBox, and one for the Button. AutomationIDPart is a table of property names and their values. The property-value pairs are different for different object types. These property-value pairs should be usable to identify the object uniquely.
AutomationID is created by walking the parent hierarchy of the leaf child object and creating
the AutomationIDPart for each object encountered. Parents that have
showInAutomationHierarchy
set to false
are skipped. Children of such
parents are considered the children of the next higher
parent whose showInAuto
flag is set to true
. During recording,
this AutomationID can be saved by the agent.
During playback when Agent provides AutomationID for finding an object, the Display object
hierarchy is walked from the top Application object downwards. At each level, a child that
matches the AutomationIDPart closest is picked up from the list of all the children. If
multiple children match the criteria, an error is thrown. Users are responsible to resolve
such conflicts by providing a unique automationName
or identifying new properties on
objects which make them unique.
Agents should save the object information if they desire persistence. AutomationID provides
toString()
and parse()
methods to convert the object to a
string representation and back.
You can use the IAutomationManager.createAutomationID()
and
IAutomationManager.resolveAutomationID()
methods
to create and resolve AutomationID objects, respectively.
You can use the IAutomationObjectHelper.helpCreateIDPart()
and IAutomationObjectHelper.helpResolveIDPart()
methods
to identify a child with in a parent which matches the AutomationIDPart.
Meer voorbeelden
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
length : int [alleen-lezen]
The number of parts in this id. | AutomationID |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | AutomationID | ||
Adds a parts to the front of the id. | AutomationID | ||
Adds a parts to the end of the id. | AutomationID | ||
Concatenates another id to this id. | AutomationID | ||
Compares this object with the given AutomationID. | AutomationID | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Indicates if there are more parts of the id. | AutomationID | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
[statisch]
Parses the string and returns an id. | AutomationID | ||
Returns the first object in the id
| AutomationID | ||
Returns the last object in the id. | AutomationID | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Removes the first object from this id. | AutomationID | ||
Removes the last object from this id. | AutomationID | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Serializes the id to a string. | AutomationID | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
length | eigenschap |
AutomationID | () | Constructor |
public function AutomationID()
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
addFirst | () | methode |
public function addFirst(p:AutomationIDPart):void
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Adds a parts to the front of the id.
Parameters
p:AutomationIDPart — Map of properties.
|
addLast | () | methode |
public function addLast(p:AutomationIDPart):void
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Adds a parts to the end of the id.
Parameters
p:AutomationIDPart — Map of properties.
|
concat | () | methode |
public function concat(other:AutomationID):AutomationID
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Concatenates another id to this id. Returns a new id, and does not mutate this instance.
Parameters
other:AutomationID — id to concatenate.
|
AutomationID — This id concatenated with the other id.
|
equals | () | methode |
public function equals(other:AutomationID):Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Compares this object with the given AutomationID.
Parameters
other:AutomationID — AutomationID object which needs to be compared.
|
Boolean — true if they are equal, false otherwise.
|
isEmpty | () | methode |
parse | () | methode |
public static function parse(s:String):AutomationID
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Parses the string and returns an id.
Parameters
s:String — Serialized form of the id as provided by the toString() method.
|
AutomationID — Parsed id.
|
peekFirst | () | methode |
public function peekFirst():AutomationIDPart
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the first object in the id
Geretourneerde waardeAutomationIDPart — First object in the id.
|
peekLast | () | methode |
public function peekLast():AutomationIDPart
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the last object in the id.
Geretourneerde waardeAutomationIDPart — Last object in the id.
|
removeFirst | () | methode |
public function removeFirst():AutomationIDPart
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Removes the first object from this id.
Geretourneerde waardeAutomationIDPart — First object in this id.
|
removeLast | () | methode |
public function removeLast():AutomationIDPart
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Removes the last object from this id.
Geretourneerde waardeAutomationIDPart — Last object in this id.
|
toString | () | methode |
Wed Jun 13 2018, 11:42 AM Z