pytest で Pyppeteer を実行しようとしていますが、クロムを起動した後、次のステートメントに進みません。
import asyncio
import pytest
from pyppeteer import launch
@pytest.mark.asyncio
async def test_BackendWeb():
browser = await launch(headless=False)
page = await pyppeteer.new_page()
await page.goto('https://www.google.com/')
このブラウザを実行した後、起動されますが、新しいページは開かれません。