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
this below code works fine on my windows x64 machine but I'm getting error on Linux arm64 machine
var playwright = await Playwright.CreateAsync();
await playwright .Chromium.ConnectAsync("ws://localhost:3000/");
Expected behavior
it should work fine on Linux Arm64 machine also
Actual behavior
it does not work and gives this error
System.NullReferenceException: Object reference not set to an instance of an object.
2025-02-24T17:05:29.380942890Z at Microsoft.Playwright.Helpers.Driver.GetExecutablePath() in /_/src/Playwright/Helpers/Driver.cs:line 90
2025-02-24T17:05:29.380946290Z at Microsoft.Playwright.Transport.StdIOTransport.GetProcess(String driverArgs) in /_/src/Playwright/Transport/StdIOTransport.cs:line 116
2025-02-24T17:05:29.380949290Z at Microsoft.Playwright.Transport.StdIOTransport..ctor() in /_/src/Playwright/Transport/StdIOTransport.cs:line 46
2025-02-24T17:05:29.380952130Z at Microsoft.Playwright.Playwright.CreateAsync() in /_/src/Playwright/Playwright.cs:line 43
Additional context
running playwright on remote Linux arm64 machine as docker and connect to it from Windows 11 x64 works fine.
means this code work, in this scenario
var playwright = await Playwright.CreateAsync();
await playwright .Chromium.ConnectAsync("ws://{remote_macahine_ip}:3000/");
Version
1.50.0
Steps to reproduce
I have playwright docker image running on port 3000
this below code works fine on my windows x64 machine but I'm getting error on Linux arm64 machine
Expected behavior
it should work fine on Linux Arm64 machine also
Actual behavior
it does not work and gives this error
Additional context
running playwright on remote Linux arm64 machine as docker and connect to it from Windows 11 x64 works fine.
means this code work, in this scenario
Environment
The text was updated successfully, but these errors were encountered: