(new to web development) Hi, can anyone explain me why this
Object x=getCurrentPage().getByXPath("//div[@class = 'notification']
/text() =
'Product saved successfully'").get(0);
returns a Boolean false object, but this
Object y = getCurrentPage().getByXPath("//div[@class='notification']
/text()").get(0);
returns DomText object with data Product saved successfully?
why is the boolean false? it seems to me it should return true.
p.s. when i try the same query in XPathBrowser (FF plugin) it returns boolean:true
thanks a lot