This web browser is not supported. The currently supported browsers are Chrome, Firefox, Edge, Opera, Brave, and Vivaldi.
If you are running an application in a way that makes it automatically display in a web browser, then you will need to make one of the supported browsers be the default application for HTML files on this machine.
Otherwise you could run the application with command-line arguments
such as -l nil -o 9009
where -l nil
means do NOT automatically display in the default web browser, and
-o 9009
means to use port 9009 (though any free port
could be used). Then you would enter localhost:9009
into a supported browser to display the application. Or if the
browser is on a different machine than where the application is
running, you would enter machine:9009
, where
machine
is the name of the machine where the
application is running. Saying -o nil
would
more safely let the operating system choose a port that it knows
to be free, though on Windows it would probably not print the
chosen port that you need to use.