Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
SAREF
saref-pipeline
Commits
3a8b802c
Commit
3a8b802c
authored
Jun 16, 2020
by
Maxime Lefrançois
Browse files
error Assistive Technology not found: org.GNOME.Accessibility.AtkWrapper
parent
2b0a3b7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/fr/emse/gitlab/saref/Main.java
View file @
3a8b802c
...
...
@@ -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"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment