def test_click_on_dashboard(self):
        self.tests.pop()
        self.logger.info("test_click_on_dashboard is running" + " " + "Total :" + " " + str(
            self.total_tests) + " " + "Remaining :" + " " + str(len(self.tests) - 1))

        dashboard = Dashboard(self.driver)
        dashboard.click_on_dashboard()

        self.logger.info("test_click_on_dashboard is completed...")
示例#2
0
    def test_click_on_dashboard(self):
        self.tests.pop()
        time.sleep(3)
        self.logger.info("test_click_on_dashboard is running" + " " +
                         "Total :" + " " + str(self.total_tests) + " " +
                         "Remaining :" + " " + str(len(self.tests) - 1))

        dashboard = Dashboard(self.driver)
        dashboard.click_on_dashboard()
        print("Navigating to Dashboard is working")

        self.logger.info("test_click_on_dashboard is completed...")
 def test_click_on_dashboard(self):
     dashboard = Dashboard(self.driver)
     dashboard.click_on_dashboard()
示例#4
0
 def test_click_on_dashboard(self):
     dashboard = Dashboard(self.driver)
     dashboard.click_on_dashboard()
     print("Navigating to Dashboard is working")