You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since couple of days now I have problem in navigating through my application on Chromium. Script launches chromium but does not put the url on the address bar, so it does remain at about:blank for long time. But same code working fine on other browsers.
browser = await playwright1.chromium.launch({headless:false});
context = await browser.newContext();
page = await context.newPage();
await page.goto("https://xxxxxx"); // does not put PAGE_URL on address bar and launched browser will just //show about:blank
The text was updated successfully, but these errors were encountered:
Does real Chrome browser open this url? The best would be to test with Chrome Canary. It might well be that Chrome no longer loads your page due to TLS or something.
Hi team,
Since couple of days now I have problem in navigating through my application on Chromium. Script launches chromium but does not put the url on the address bar, so it does remain at about:blank for long time. But same code working fine on other browsers.
browser = await playwright1.chromium.launch({headless:false});
context = await browser.newContext();
page = await context.newPage();
await page.goto("https://xxxxxx"); // does not put PAGE_URL on address bar and launched browser will just //show about:blank
The text was updated successfully, but these errors were encountered: