try current service link

This commit is contained in:
Kenneth Kehl
2024-03-27 10:52:22 -07:00
parent 939c1c978e
commit 70c3457dbd

View File

@@ -88,6 +88,15 @@ def create_new_template(page):
page.wait_for_load_state("domcontentloaded")
print(page.content())
send_messages_button = page.get_by_text("Send messages")
expect(send_messages_button).to_be_visible()
send_messages_button.click()
# Check to make sure that we've arrived at the next page.
page.wait_for_load_state("domcontentloaded")
create_template_button = page.get_by_text("Create your first template")
expect(create_template_button).to_be_visible()
create_template_button.click()