Add missing slash in selecting dynamically-loaded content documentation (#5890)

This commit is contained in:
Mojtaba Dashtinejad 2023-04-10 14:14:49 +02:00 committed by GitHub
parent 96033ce5a7
commit 98571eb946
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ The following is a simple snippet to illustrate its usage within a Scrapy spider
async with async_playwright() as pw:
browser = await pw.chromium.launch()
page = await browser.new_page()
await page.goto("https:/example.org")
await page.goto("https://example.org")
title = await page.title()
return {"title": title}