summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/tests/functional/test_project_page.py17
1 files changed, 13 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/tests/functional/test_project_page.py b/bitbake/lib/toaster/tests/functional/test_project_page.py
index 82dca442f9..31177cc1ff 100644
--- a/bitbake/lib/toaster/tests/functional/test_project_page.py
+++ b/bitbake/lib/toaster/tests/functional/test_project_page.py
@@ -494,7 +494,10 @@ class TestProjectPage(SeleniumFunctionalTestCase):
494 ) 494 )
495 self._navigate_to_config_nav('softwarerecipestable', 4) 495 self._navigate_to_config_nav('softwarerecipestable', 4)
496 # check show rows(pagination) 496 # check show rows(pagination)
497 self._mixin_test_table_show_rows(table_selector='softwarerecipestable') 497 self._mixin_test_table_show_rows(
498 table_selector='softwarerecipestable',
499 to_skip=[150],
500 )
498 501
499 def test_machines_page(self): 502 def test_machines_page(self):
500 """ Test Machine page 503 """ Test Machine page
@@ -561,7 +564,10 @@ class TestProjectPage(SeleniumFunctionalTestCase):
561 ) 564 )
562 self._navigate_to_config_nav('machinestable', 5) 565 self._navigate_to_config_nav('machinestable', 5)
563 # check show rows(pagination) 566 # check show rows(pagination)
564 self._mixin_test_table_show_rows(table_selector='machinestable') 567 self._mixin_test_table_show_rows(
568 table_selector='machinestable',
569 to_skip=[150],
570 )
565 571
566 def test_layers_page(self): 572 def test_layers_page(self):
567 """ Test layers page 573 """ Test layers page
@@ -635,7 +641,10 @@ class TestProjectPage(SeleniumFunctionalTestCase):
635 ) 641 )
636 self._navigate_to_config_nav('layerstable', 6) 642 self._navigate_to_config_nav('layerstable', 6)
637 # check show rows(pagination) 643 # check show rows(pagination)
638 self._mixin_test_table_show_rows(table_selector='layerstable') 644 self._mixin_test_table_show_rows(
645 table_selector='layerstable',
646 to_skip=[150],
647 )
639 648
640 def test_distro_page(self): 649 def test_distro_page(self):
641 """ Test distros page 650 """ Test distros page
@@ -685,7 +694,7 @@ class TestProjectPage(SeleniumFunctionalTestCase):
685 # check show rows(pagination) 694 # check show rows(pagination)
686 self._mixin_test_table_show_rows( 695 self._mixin_test_table_show_rows(
687 table_selector='distrostable', 696 table_selector='distrostable',
688 to_skip=[150] 697 to_skip=[150],
689 ) 698 )
690 699
691 def test_single_layer_page(self): 700 def test_single_layer_page(self):