blob: 5c144fa9e42de084efff3689277c15596df61599 [file] [log] [blame]
package brooklyn.web.console.test
import org.testng.annotations.Test
import static brooklyn.web.console.test.SeleniumTest.selenium
import static brooklyn.web.console.test.SeleniumTest.waitFor
public class SummaryTest {
@Test(groups = "Selenium1")
public void testInitialText() {
selenium.open("/detail/");
waitFor({selenium.isTextPresent("Select an entity")});
}
}