issues/91/user_tool.py (49 lines of code) (raw):

from playwright.sync_api import sync_playwright, expect from utils.trace_cleaner import trace_cleaner # Expensify app URL EXPENSIFY_URL = "https://dev.new.expensify.com:8082/" # Email login credentials EMAIL_USERNAME = "naturesv057+52907_1@gmail.com" def launch_browser(pw, device=None, geolocation=None): """ Launch the browser. """ browser = pw.chromium.launch( headless=False, proxy={"server": "http://127.0.0.1:8080/"}, args=[ "--ignore-certificate-errors", "--disable-web-security", "--disable-features=IsolateOrigins,site-per-process", ], slow_mo=500 ) context_args = {} if device: context_args.update(pw.devices[device]) if geolocation: context_args["geolocation"] = geolocation context_args["permissions"] = ["geolocation"] context = browser.new_context(**context_args) page = context.new_page() return browser, context, page def login_user(page): """ Login to the Expensify app and complete the onboarding. """ # Open the Expensify app page.goto(EXPENSIFY_URL) # Login user page.get_by_role("textbox", name="Phone or email").fill(EMAIL_USERNAME) page.locator("div", has_text="Continue").last.click() # Get the OTP code from the email otp = "123456" # Enter the OTP code page.keyboard.type(otp) def test_52907(): with sync_playwright() as p: # Step 1: Login user browser, context, page = launch_browser(p) # Start tracing context.tracing.start(screenshots=True, snapshots=True, sources=True) try: login_user(page) page.wait_for_timeout(5000) # Step 2: Reintroduce scenario page.get_by_test_id("CustomBottomTabNavigator").get_by_label("Search").click() page.get_by_test_id("Search").get_by_label("Search").click() page.get_by_test_id("search-router-text-input").fill("type:chat status:all in:in category:car") page.get_by_role("textbox", name="Search for something").press("Enter") # Step 3: Check if the issue is resolved expect(page.locator("#root")).to_contain_text("Nothing to show") finally: trace_path = "/app/expensify/user_tool/output_browser1.zip" # Stop tracing and export trace file context.tracing.stop(path=trace_path) # Clean the trace file trace_cleaner(trace_path) # Close the browser browser.close() if __name__ == "__main__": test_52907()