We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f02e8 commit 638b0c5Copy full SHA for 638b0c5
playwright/_impl/_browser_type.py
@@ -85,7 +85,7 @@ async def launch(
85
try:
86
return from_channel(await self._channel.send("launch", params))
87
except Exception as e:
88
- if "npx playwright install" in str(e):
+ if "npx playwright install " in str(e):
89
raise not_installed_error(f'"{self.name}" browser was not found.')
90
raise e
91
@@ -146,7 +146,7 @@ async def launch_persistent_context(
146
context._options = params
147
return context
148
149
150
151
152
0 commit comments