Mikhail,

I think I have fixed the problem and please update your code from
trunk/core to see if the fix
works for you.

The problem comes from the Selenium attributeLocator format:
loca...@attribute
If you have already had an attribute in the locator, selenium will not
be able to parse
the "@attribute" portion correctly.

The fix is a trick one, instead of use

loca...@attribute

we can use

locator/self::node()@attribute

The "self::node()" portion refers to the current node itself and in
this way, you will not
have any attribute inside the last portion of xpath, i.e., self::node
().

Thanks,

Jian
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to