@@ -15,7 +15,7 @@ def test_erwf_01_01_verify_page_presence_and_visibility(self, driver, exercises_
1515 assert page_content_presence , "The page content is absent in DOM"
1616 assert page_content_visibility , "The page content is invisible"
1717
18- @allure .title ("Verify composition, visibility of elements on the 1st-12th levels of nesting on the page" )
18+ @allure .title ("Verify composition, visibility of elements on the 1st-13th levels of nesting on the page" )
1919 def test_erwf_01_02_verify_page_structure_and_visibility (self , driver , exercises_ru_words_family_page_open ):
2020 page = erwfPage (driver )
2121 structure_of_1st_level = page .get_structure_of_1st_level ()
@@ -41,6 +41,7 @@ def test_erwf_01_02_verify_page_structure_and_visibility(self, driver, exercises
4141 visibility_of_elements_on_11th_level = page .check_elements_visibility_on_11th_level ()
4242 structure_of_12th_level = page .get_structure_of_12th_level ()
4343 visibility_of_elements_on_12th_level = page .check_elements_visibility_on_12th_level ()
44+ structure_of_13th_level = page .get_structure_of_13th_level ()
4445 assert structure_of_1st_level , "The page is empty"
4546 assert visibility_of_elements_on_1st_level , "1th-level elements are invisible"
4647 assert structure_of_2nd_level , "Elements on the 2nd level are absent on the page"
@@ -64,3 +65,4 @@ def test_erwf_01_02_verify_page_structure_and_visibility(self, driver, exercises
6465 assert visibility_of_elements_on_11th_level , "11th-level elements are invisible"
6566 assert structure_of_12th_level , "Elements on the 12th level are absent on the page"
6667 assert visibility_of_elements_on_12th_level , "12th-level elements are invisible"
68+ assert structure_of_13th_level , "Elements on the 13th level are absent on the page"
0 commit comments