use of org.xwiki.panels.test.po.ApplicationsPanel in project xwiki-platform by xwiki.
the class FilterIT method setUp.
@Before
public void setUp() {
// Navigate to the Filter app by clicking in the Application Panel.
// This verifies that the Filter application is registered in the Applications Panel.
// It also verifies that the Translation is registered properly.
ApplicationsPanel applicationPanel = ApplicationsPanel.gotoPage();
this.vp = applicationPanel.clickApplication("Filter Streams Converter");
// Verify we're on the right page!
Assert.assertEquals("Filter", this.vp.getMetaDataValue("space"));
Assert.assertEquals("WebHome", this.vp.getMetaDataValue("page"));
}
Aggregations