Commit 3a8b802c authored by Maxime Lefrançois's avatar Maxime Lefrançois
Browse files

error Assistive Technology not found: org.GNOME.Accessibility.AtkWrapper

parent 2b0a3b7a
......@@ -50,8 +50,13 @@ import fr.emse.gitlab.saref.tests.TestSuites;
public class Main {
private static final Logger LOG = LoggerFactory.getLogger(Main.class);
private static final boolean CAN_BROWSE = Desktop.isDesktopSupported()
private static boolean CAN_BROWSE = false;
static {
try {
CAN_BROWSE = Desktop.isDesktopSupported()
&& Desktop.getDesktop().isSupported(Desktop.Action.BROWSE);
} catch (Exception ex) {}
}
private static final String CI_SERVER_HOST = System.getenv("CI_SERVER_HOST");
private static final String CI_PROJECT_PATH = System.getenv("CI_PROJECT_PATH");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment