Simple and light image to run your robots
cd robot-framework-docker
docker build -t robot .
docker run -v `pwd`/robot:/srv/robot robot
if you are using macos with appple silicon, add platform information
docker --platform linux/amd64 run -v `pwd`/robot:/srv/robot robot
We are specifying platform to support ARM machines eg. MacBooks
*** Settings ***
Library Browser
*** Tasks ***
Vistit Google
Start Browser
Go To https://google.com
End Browser
*** Keywords ***
Start Browser
New Browser firefox headless=0 slowMo=0.1
New Context viewport={'width': 1920, 'height': 1080} acceptDownloads=true recordVideo={'dir': 'video'}
New Page
End Browser
Close Browser