Skip to content

Commit 37e97a1

Browse files
Addressing comments
1 parent 7fb6bb2 commit 37e97a1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

tests/smokescreen/test_compartment_6.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,9 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
273273
page.get_by_role("button", name="Calendar").click()
274274
CalendarPicker(page).v1_calender_picker(datetime.today())
275275
page.locator("#UI_NS_CONSULTANT_PIO_SELECT_LINK").click()
276-
# Here value '201' is refering to Consultant B, Frame
277-
option_locator = page.locator('[value="201"]:visible')
276+
option_locator = page.locator(
277+
'[value="201"]:visible'
278+
) # Here value '201' is refering to Consultant B, Frame
278279
option_locator.wait_for(state="visible")
279280
option_locator.click()
280281
page.get_by_role("textbox", name="Notes").click()
@@ -343,8 +344,9 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
343344
page.get_by_role("button", name="Calendar").click()
344345
CalendarPicker(page).v1_calender_picker(datetime.today())
345346
page.locator("#UI_NS_CONSULTANT_PIO_SELECT_LINK").click()
346-
# Here value '201' is refering to Consultant B, Frame
347-
option_locator = page.locator('[value="201"]:visible')
347+
option_locator = page.locator(
348+
'[value="201"]:visible'
349+
) # Here value '201' is refering to Consultant B, Frame
348350
option_locator.wait_for(state="visible")
349351
option_locator.click()
350352
page.get_by_role("textbox", name="Notes").click()

0 commit comments

Comments
 (0)