Hi All,
I want to have a virtual browser eg. firefox that will be embedded in an internal system we have using an iframe, this will be used for a few different sites that need to be accessed.
Is it possible to pass through a parameter in the repl url eg. &site= and this can then be passed through to the .replit file so it can be used in the run command to launch firefox
language = “bash”
audio = false
run = “firefox $site -kiosk -private”
a different URL will be specified for the different sites needing to be launched
following some preliminary searches the additional parameters in my url are to allow embedding in an iframe and also to only show the output.
is what i’m trying to achieve possible or would it not work?