I need to get the value of etx:qtip. When I inspect my element, this
is what I get:
<div class="blank" ext:qtip="Please select a file before uploading."
ext:width="400px">
When I try using something like //div[@ext:qtip="Please select a file
before uploading."], the XPather shows error.
Let me know if you need any further information in order to help me.
Thanks,
Pooja
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-users?hl=en.
Ur using incorrect syntax.....
Try use the below and let me know if u have any issues,,,
System.out.println("The division which contains class as blank and its
another attribute ext:qtip value is : "+selenium.getAttribute("//
div[@class='blank']@ext:qtip"));
The above statement will print the O/p as::
The division which contains class as blank and its another attribute
ext:qtip value is : Please select a file before uploading.
Thanks & Regards,
Meerasaaheb Mohmmad