try to pass message back in 'next' field

This commit is contained in:
Kenneth Kehl
2024-08-29 08:07:37 -07:00
parent d4b9a95b29
commit 33e616a8f1
3 changed files with 19 additions and 16 deletions

View File

@@ -12,10 +12,10 @@ def login_for_end_to_end_testing(browser):
page = context.new_page()
page.goto(f"{E2E_TEST_URI}/sign-in")
#sign_in_button = page.get_by_role("link", name="Sign in")
# sign_in_button = page.get_by_role("link", name="Sign in")
# Test trying to sign in.
#sign_in_button.click()
# sign_in_button.click()
# Wait for the next page to fully load.
page.wait_for_load_state("domcontentloaded")
@@ -63,7 +63,6 @@ def authenticated_page(end_to_end_context):
page = end_to_end_context.new_page()
page.goto(f"{E2E_TEST_URI}/sign-in")
# Wait for the next page to fully load.
page.wait_for_load_state("domcontentloaded")

View File

@@ -9,7 +9,6 @@ from playwright.sync_api import expect
E2E_TEST_URI = os.getenv("NOTIFY_E2E_TEST_URI")
def create_new_template(page):
current_service_link = page.get_by_text("Current service")
@@ -96,8 +95,7 @@ def test_create_new_template(end_to_end_context):
x = page.goto(f"{E2E_TEST_URI}/sign-in")
# Wait for the next page to fully load.
page.wait_for_load_state("domcontentloaded")
print(f"WTF is x? {x}")
print(f"PAGE ON ENTER TEST_CREATE_NEW_TEMPLATE AFTER SIGNING IN IS {page.content()}")
print(f"PAGE ON ENTER TEST_CREATE_NEW_TEMPLATE AFTER SIGNING IN IS {page}")
current_date_time = datetime.datetime.now()
new_service_name = "E2E Federal Test Service {now} - {browser_type}".format(
@@ -108,7 +106,6 @@ def test_create_new_template(end_to_end_context):
print(f"GOING TO {E2E_TEST_URI}/accounts")
page.goto(f"{E2E_TEST_URI}/accounts")
# Check to make sure that we've arrived at the next page.
page.wait_for_load_state("domcontentloaded")
print(page)