I'm a fairly new to webtest, so I may be missing something horribly obvious here, but I'm having an issue with not being able to use verifyxpath on any elements when I load a specific page. As I backed off on the depth of what I was trying to identify, I discovered I couldn't even match the body of the document. The html is horribly invalid, and my current theory is that this is the source of my problem, but I'm not entirely sure. Most pages on the site haven't given me too much trouble. The simplified version of the test is as follows:
<invoke url="http://www.gamevee.com/user/perelstein/videos" /> <verifyXPath xpath="//a" /> (FAILS) <verifyXPath xpath="//body" /> (FAILS) <verifyXPath xpath="/html" /> (FAILS) Any insight is highly appreciated.

