blob: eca7ee35653bae07c68df635f4ad1655905f62c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
package com.vaadin.tests.tb3;
import java.util.ArrayList;
import java.util.List;
import org.openqa.selenium.remote.DesiredCapabilities;
import com.vaadin.testbench.parallel.Browser;
/**
* Base class for tests which should be run on all supported browsers. The test
* is automatically launched for multiple browsers in parallel by the test
* runner.
*
* Sub classes can, but typically should not, restrict the browsers used by
* implementing a
*
* <pre>
* @Parameters
* public static Collection<DesiredCapabilities> getBrowsersForTest() {
* }
* </pre>
*
* @author Vaadin Ltd
*/
public abstract class MultiBrowserTest extends PrivateTB3Configuration {
protected List<DesiredCapabilities> getBrowsersExcludingChrome() {
return getBrowserCapabilities(Browser.FIREFOX, Browser.IE11);
}
protected List<DesiredCapabilities> getBrowsersExcludingIE() {
return getBrowserCapabilities(Browser.FIREFOX, Browser.CHROME);
}
protected List<DesiredCapabilities> getBrowsersExcludingFirefox() {
return getBrowserCapabilities(Browser.IE11, Browser.CHROME);
}
protected List<DesiredCapabilities> getBrowsersSupportingShiftClick() {
return getBrowserCapabilities(Browser.IE11, Browser.CHROME);
}
protected List<DesiredCapabilities> getIEBrowsersOnly() {
return getBrowserCapabilities(Browser.IE11);
}
protected List<DesiredCapabilities> getBrowsersSupportingTooltip() {
// With IEDriver, the cursor seems to jump to default position after the
// mouse move, so we are not able to test the tooltip behavior properly
// unless using requireWindowFocusForIE() { return true; } .
// See #13854.
// On Firefox, the driver causes additional mouseOut events causing the
// tooltip to disappear immediately. Tooltips may work in some
// particular cases, but not in general.
return getBrowserCapabilities(Browser.CHROME);
}
@Override
public List<DesiredCapabilities> getBrowsersToTest() {
return getBrowserCapabilities(Browser.IE11, Browser.FIREFOX,
Browser.CHROME);
}
protected List<DesiredCapabilities> getBrowserCapabilities(
Browser... browsers) {
List<DesiredCapabilities> capabilities = new ArrayList<>();
for (Browser browser : browsers) {
capabilities.add(browser.getDesiredCapabilities());
}
return capabilities;
}
}
|