I am trying to figure out how I can run arbitrary groovy code within my groovy webtests.
I have a test like this:
webtest(description) {
storeXPath
xpath:"/html/body/table/tbody/tr[1]/td/table[2]/tbody/tr[2]/td[1]",
property:"myProp"
}
I'd like to be able to take a look at that property, do some manipulations,
and use it for another task. I find when I stick even a println after the
storeXpath it gets evaluated before the test is even run. Any ideas would be
appreciated!

