It would appear that the ChromeRemoteInterface.Session does not need to be a GenServer.
This will also remove the following warning:
warning: function init/1 required by behaviour GenServer is not implemented (in module ChromeRemoteInterface.Session).
We will inject a default implementation for now:
def init(init_arg) do
{:ok, init_arg}
end
It would appear that the
ChromeRemoteInterface.Session
does not need to be a GenServer.This will also remove the following warning: