aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test-extensions/net
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2013-02-13 14:21:47 +0100
committerJiri Vanek <[email protected]>2013-02-13 14:21:47 +0100
commitb73ede6f96f5a668454e31c2956eec83cfbeb873 (patch)
treef4b4b92f6363ff1c4a202aebf7e99e218dfd8f46 /tests/test-extensions/net
parent96063b6e64785761d3c588d8b83612dae2ab214c (diff)
Added test for hanging firefox by LaunchException and Improved AddShutdownHookTest
Diffstat (limited to 'tests/test-extensions/net')
-rw-r--r--tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/Epiphany.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/Epiphany.java b/tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/Epiphany.java
index 980e18f..3b7c40e 100644
--- a/tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/Epiphany.java
+++ b/tests/test-extensions/net/sourceforge/jnlp/browsertesting/browsers/Epiphany.java
@@ -42,7 +42,11 @@ import net.sourceforge.jnlp.browsertesting.Browsers;
public class Epiphany extends MozillaFamilyLinuxBrowser {
- String[] cs = {"--new-tab"};
+ //the --sm-client-disable is hack which fixed separate calls to epiphany
+ //without this, the second tab is never open :(
+ //with this, also no tab, but at least new window in same process. So ok for testsuite.
+ //may fall to --new-tab with some fix on this issue again
+ String[] cs = {"--sm-client-disable"};
public Epiphany(String bin) {
super(bin);