I have a Chromium running in Kiosk mode. I want to change the URL of the page via SSH
If it weren't in Kiosk mode I'd use xdotool:
export DISPLAY=":0"
WID=$(xdotool search --onlyvisible --class chromium|head -1)
xdotool windowactivate ${WID}
xdotool key ctrl+l
xdotool type 'www.example.org'
xdotool key Return
But this doesn't work. Probably because it's in kiosk mode.
Apart from that, my xdotools is working fine
export DISPLAY=":0"
WID=$(xdotool search --onlyvisible --class chromium|head -1)
xdotool windowactivate ${WID}
xdotool key ctrl+F5
Does refresh my page
Perhaps xdotool is not the way to go for this very case?