Hi! Trying to get value of input and get an error ``` from playwright.sync_api import sync_playwright with sync_playwright() as p: browser = p.chromium.launch(headless=False) page = browser.new_page() page.goto("https://github.com/", wait_until='networkidle', timeout=30000) page.fill("//input[@type='text']", "testing") page.wait_for_timeout(5000) val = page.get_attribute("//input[@type='text']", "value") assert val == "testing" browser.close() ``` Actual value is empty