assertThat(gui.chromeServicePath.getText(), is(""));
}
@Test
public void shouldSetChromeDriverPathOnConfigure() {
ChromeDriverConfig config = new ChromeDriverConfig();
config.setChromeDriverPath("chromedriver.path");
gui.configure(config);
assertThat(gui.chromeServicePath.getText(), is(config.getChromeDriverPath()));
}