Java Code Examples for org.openqa.selenium.Platform#UNIX
The following examples show how to use
org.openqa.selenium.Platform#UNIX .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PlatformMatcherTest.java From selenium-api with MIT License | 5 votes |
@DataProvider public Object[][] platforms() { return new Object[][]{ {"win7", Platform.VISTA, true}, {"win7", "windows 7", true}, {"vista", Platform.VISTA, true}, {"darwin", Platform.MAC, true}, {Platform.ANY, Platform.LINUX, true}, {"linux", Platform.LINUX, true}, {"linux", Platform.UNIX, false}, {null, Platform.XP, true}, }; }
Example 2
Source File: AssumeCapabilityTest.java From hifive-pitalium with Apache License 2.0 | 4 votes |
@CapabilityFilter(platform = Platform.UNIX) @Test public void familyParamUnix() throws Exception { assertAssumed(0, 1, 2, 3); }