I have had this issue consistently where using clickLink to test links on a website results in having an extra "?popup=true#" argument added to that page's URL. So if I do a clickLink "Home" (in Groovy), for instance, and the URL to home is www.mydomain.com/home, Webtest will try to open this page: www.mydomain.com/home?popup=true#.
The site I'm testing is configured in a way that with the "?popup=true#" argument present in the URL, part of the content is stripped off the page, assuming that the content is meant to be rendered within a pop-up. This leads to JS errors and subsequent tests for that page failing. Is there a way I can turn off this behavior of clickLink trying to add that extra argument to each page's URL? I can't seem to find any documentation on this. Thanks! -R

