ContributionsMost RecentMost LikesSolutionsHow can I specify a relative location for a DataSource file in the DataSource Editor? I have Ready! API 1.9.0 installed on a Windows 7 PC. During test development I can specify the absolute location of the DataSource file in the DataSource Editor. How can I specify a relative location for a DataSource file in the DataSource Editor? Is there a way to specify this location relative to the project root folder? SolvedRe: Groovy script receives null instead of a TestStepStatus value in scripted call RadfordThanks for the feedback. I've added a null check for now, but that does not discount the fact that runTestStepByName should not return a null, but one of the values from TestStepResult as per their APPI doc: runTestStepByName TestStepResult runTestStepByName(String name) Runs the specified TestStep and returns the result I'll see about a bug report. Fawad Groovy script receives null instead of a TestStepStatus value in scripted call I have a groovy script test step that calls other test steps in the test. In cases where the groovy call to the test step succeeds I can do the following: TestStepResult licensestep = context.getTestRunner().runTestStepByName(stepName) return licensestep.getStatus() == TestStepResult.TestStepStatus.OK and I get true returned, but where the runTestStepByName fails it returns null and licensestep.getStatus() results in a null pointer exception. Is this by design or is it a bug?