I am trying to execute the script in mcr.microsoft.com/playwright:bionic docker container .
I have exposed the port 5900 as shown below but unable to connect to host when i tried with the vnc viewer localhost:5900. I can able to view other docker container such as selenium/standalone-chrome execution through vnc viewer but not playwright !
How can I view the playwright docker container test execution ? is any other way that i can see the test execution live ? Any help would be much appreciated !
docker run --name playwright1 -it --rm --ipc=host --cap-add=SYS_ADMIN -u root -p 5900:5900 -v $(pwd):/src -v /home/Automation/:/root/.m2 mcr.microsoft.com/playwright:bionic &