When I run my test class that extends SeleniumTestCase in the following method all calls to context.getAttribute return nul.
It's necessary any configuration to work well? @BeforeClass public void setup(ITestContext context) { this.testContext = context; delegate = (Selenium) context.getAttribute(TapestryTestConstants.SELENIUM_ATTRIBUTE); baseURL = (String) context.getAttribute(TapestryTestConstants.BASE_URL_ATTRIBUTE); errorReporter = (ErrorReporter) context.getAttribute(TapestryTestConstants.ERROR_REPORTER_ATTRIBUTE); } -- Pablo Henrique dos Reis