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
Loading
Loading
Loading
Loading
+6 −1
Original line number Original line Diff line number Diff line
@@ -50,8 +50,13 @@ import fr.emse.gitlab.saref.tests.TestSuites;
public class Main {
public class Main {


	private static final Logger LOG = LoggerFactory.getLogger(Main.class);
	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);
			&& 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_SERVER_HOST = System.getenv("CI_SERVER_HOST");
	private static final String CI_PROJECT_PATH = System.getenv("CI_PROJECT_PATH");
	private static final String CI_PROJECT_PATH = System.getenv("CI_PROJECT_PATH");