Hi
Given the following UI module definition
ui.Table(uid: "chromeDoctorSearchResultsresultstable", clocator: [id:
"resultsTable"], group: "true",namespace:"html") {
TextBox(uid: "row:*,column:1",namespace:"html") /* CardId */
TextBox(uid: "row:*,column:2",namespace:"html") /* First Name */
TextBox(uid: "row:*,column:3",namespace:"html") /* Last Name */
TextBox(uid: "row:*,column:4",namespace:"html") /*Phone Number */
Container(uid: "row:*,column:5",namespace:"html") { /* Operations
*/
UrlLink(uid: "edit", clocator: [text: "View/Edit
Records"],namespace:"html")
UrlLink(uid: "summary", clocator: [text:
"Summary"],namespace:"html")
}
}
Following is the XPath generated by the command :
getTableMaxRowNum(tableName)
Command request:
getXpathCount[//descendant-or-self::html:tab...@id="resultsTable"]/tbody/tr[child::td]/td[1],
] on session 4cf5394d78244112bbd8393ec00c9cd1
The correct XPath should be
getXpathCount[//descendant-or-self::html:tab...@id='resultsTable']/*html:*
tbody/*html:*tr[child::*html:*td]/html:td[1], ] on session
4cf5394d78244112bbd8393ec00c9cd1
I have used the registerNamespace command . Is there any way to overcome
this ?
Regards
Hari
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"tellurium-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/tellurium-users?hl=en
-~----------~----~----~----~------~----~------~--~---