We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80d039e commit 0fdebb9Copy full SHA for 0fdebb9
tests/test_example.py
@@ -8,8 +8,6 @@
8
"""
9
10
import pytest
11
-import logging
12
-import os
13
from playwright.sync_api import Page, expect
14
15
@@ -43,7 +41,7 @@ def test_basic_example(page: Page) -> None:
43
41
2) Asserts that the README contents rendered by GitHub contains the text "Playwright Python Blueprint"
44
42
3) Asserts that the main section of the page contains the topic label "playwright-python"
45
'''
46
- logging.info(f"Test variable: {os.getenv('USER_PASS')}")
+
47
# Assert repo text is present
48
expect(page.get_by_role("article")).to_contain_text("Playwright Python Blueprint")
49
0 commit comments