Skip to content

Commit 66c1cb2

Browse files
Fixing indentation on pages/base_page.py
1 parent abeca87 commit 66c1cb2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pages/base_page.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ def __init__(self, page: Page):
3333
self.bowel_cancer_screening_system_header = self.page.locator("#ntshAppTitle")
3434

3535
def click_main_menu_link(self)->None:
36-
for _ in range(3): # Try up to 3 times
37-
if self.main_menu_link.is_visible():
38-
click(self.page, self.main_menu_link)
39-
return # Exit if successful
36+
for _ in range(3): # Try up to 3 times
37+
if self.main_menu_link.is_visible():
38+
click(self.page, self.main_menu_link)
39+
return # Exit if successful
4040

4141
def click_log_out_link(self)->None:
4242
click(self.page, self.log_out_link)

0 commit comments

Comments
 (0)