use of org.wso2.iot.integration.ui.pages.home.IOTAdminDashboard in project product-iots by wso2.
the class DeviceGroupTest method setup.
@BeforeClass(alwaysRun = true)
public void setup() throws Exception {
super.init();
driver = BrowserManager.getWebDriver();
LoginUtils.login(driver, automationContext, getWebAppURL());
adminDashboard = new IOTAdminDashboard(driver);
}
use of org.wso2.iot.integration.ui.pages.home.IOTAdminDashboard in project product-iots by wso2.
the class LoginTest method testAdminLogin.
@Test(description = "Verify logins to IOT server dashboard")
public void testAdminLogin() throws IOException, XPathExpressionException {
LoginPage loginPage = new LoginPage(driver);
IOTAdminDashboard dashboard = loginPage.loginAsAdmin(automationContext.getSuperTenant().getTenantAdmin().getUserName(), automationContext.getSuperTenant().getTenantAdmin().getPassword());
dashboard.logout();
}
use of org.wso2.iot.integration.ui.pages.home.IOTAdminDashboard in project product-iots by wso2.
the class SampleInstallationVerification method setup.
@BeforeClass(alwaysRun = true)
public void setup() throws XPathExpressionException, XMLStreamException, IOException {
super.init();
driver = BrowserManager.getWebDriver();
LoginUtils.login(driver, automationContext, getWebAppURL());
adminDashboard = new IOTAdminDashboard(driver);
}
use of org.wso2.iot.integration.ui.pages.home.IOTAdminDashboard in project product-iots by wso2.
the class SampleEnrollmentTest method setup.
@BeforeClass(alwaysRun = true)
public void setup() throws XPathExpressionException, XMLStreamException, IOException {
super.init();
driver = BrowserManager.getWebDriver();
LoginUtils.login(driver, automationContext, getWebAppURL());
IOTAdminDashboard adminDashboard = new IOTAdminDashboard(driver);
EnrollDevicePage enrollDevicePage = adminDashboard.enrollNewDevice();
connectedCupDeviceTypeViewPage = enrollDevicePage.gotoConnectedCupDeviceTypeViewPage();
}
use of org.wso2.iot.integration.ui.pages.home.IOTAdminDashboard in project product-iots by wso2.
the class PolicyTest method setup.
@BeforeClass(alwaysRun = true)
public void setup() throws Exception {
super.init();
driver = BrowserManager.getWebDriver();
LoginUtils.login(driver, automationContext, getWebAppURL());
adminDashboard = new IOTAdminDashboard(driver);
}
Aggregations