def test_pw_new_page(page:Page): page.goto("/demo/link",wait_until="networkidle") page.get_by_text("本页跳转到百度").click() expect(page.get_by_text("百度一下",exact=True)).to_be_visible() page.goto("/demo/link",wait_until="networkidle") with page.expect_popup() as popup_page: page.get_by_text("新页面跳转到淘宝").click() new_page = popup_page.value expect(new_page.locator(".search-button")).to_be_attached()