We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aebec5 commit c347f9cCopy full SHA for c347f9c
llmstack/connections/handlers/linkedin_login.py
@@ -34,7 +34,7 @@ async def activate(self, connection) -> Iterator[Union[Connection, dict]]:
34
35
async with async_playwright() as p:
36
browser = await p.chromium.connect(ws_endpoint=settings.PLAYWRIGHT_URL) if hasattr(
37
- settings, 'PLAYWRIGHT_URL') and settings.PLAYWRIGHT_URL else await p.chromium.launch(headless=False)
+ settings, 'PLAYWRIGHT_URL') and settings.PLAYWRIGHT_URL else await p.chromium.launch()
38
context = await browser.new_context()
39
page = await context.new_page()
40
await page.goto('https://www.linkedin.com/login')
0 commit comments