Ejemplo n.º 1
0
 def _navigate(self):
     try:
         # already on the page?
         self._assertUrl()
     except AssertionError as e:
         SE.get(SE.current_url + self._sub_url)
         self._assertUrl()
 def _navigate(self):
     try:
         # already on the page?
         self._assertUrl()
     except AssertionError as e:
         SE.get(SE.current_url + self._sub_url)
         self._assertUrl()
 def tearDownClass(cls):
     # have to remove the filter through the cls.filters attribute instead of cls.the_filter
     # to access the filters/reports page before accessing the_filter
     SE.get(KATELLO.url)
     cls.filters.get_filter(cls.filter_details.filter_name).remove()
     super(NewFilterTestE2ECase, cls).tearDownClass()
 def test_3_LoginCtx(self):
     with current_url(KATELLO.url):
         with login_ctx(KATELLO.username, KATELLO.password):
             SE.get(KATELLO.url + "/sam")
 def setUp(self):
     SE.get(KATELLO.url)
     self.verificationErrors = []
 def tearDownClass(cls):
     # have to remove the filter through the cls.filters attribute instead of cls.the_filter
     # to access the filters/reports page before accessing the_filter
     SE.get(KATELLO.url)
     cls.filters.get_filter(cls.filter_details.filter_name).remove()
     super(NewFilterTestE2ECase, cls).tearDownClass()
Ejemplo n.º 7
0
 def tearDownClass(cls):
     '''logout'''
     SE.get(KATELLO.url)
     logout()
Ejemplo n.º 8
0
 def setUpClass(cls):
     super(SamDashboardPageTestCase, cls).setUpClass()
     SE.get(KATELLO.url + '/' + pages.dashboard.url)
     cls.page = SamPageObject()
 def setUpClass(cls):
     super(SamDashboardPageTestCase, cls).setUpClass()
     SE.get(KATELLO.url + '/' + pages.dashboard.url)
     cls.page = SamPageObject()
Ejemplo n.º 10
0
 def test_3_LoginCtx(self):
     with current_url(KATELLO.url):
         with login_ctx(KATELLO.username, KATELLO.password):
             SE.get(KATELLO.url + "/sam")
Ejemplo n.º 11
0
 def setUp(self):
     SE.get(KATELLO.url)
     self.verificationErrors = []
 def tearDownClass(cls):
     '''logout'''
     SE.get(KATELLO.url)
     logout()