...
@ManagedPages
public Pages pages;
@Before
public void set_preconditions_for_data_driven_test() {
String newBaseUrl = "http://" + getId() + ".dev/foo";
pages.getConfiguration().getEnvironmentVariables().setProperty(ThucydidesSystemProperty.BASE_URL.getPropertyName(), newBaseUrl);
}
@Test
public void data_driven_test() {
pages.get(AnyPage.class).open();
}
...