I'm in the process of evaluating Testim.io (Tests automation framework). They provide a CLI for running tests in a CI environment but do not support Github Actions. I've been trying to run it anyway, using the local option (which spins up a local Chrome instance) but failed miserably. The steps that were taken:
- Install Chromium using
browser-actions/setup-chrome@latest
action. - Run testim-cli with the
--use-local-chrome-driver
flag, passing the Chromium bin location (--chrome-binary-location=$(which chrome)
).
The error I'm getting in the action logs:
I suspect I might be passing the wrong location of the chromium bin, but I'm not aware of any debugging tools in Github Actions that might help in that case.
Did anyone encounter anything similar?