Skip to content

Commit 284afdf

Browse files
committed
Add supported mobile platforms & mobile browser types.
1 parent 70b5584 commit 284afdf

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package io.appium.java_client.remote;
2+
3+
public interface MobileBrowserType {
4+
5+
String SAFARI = "Safari";
6+
String BROWSER = "Browser";
7+
String CHROMIUM = "Chromium";
8+
String CHROME = "Chrome";
9+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package io.appium.java_client.remote;
2+
3+
public interface MobilePlatform {
4+
5+
String ANDROID = "Android";
6+
String IOS = "iOS";
7+
String FIREFOX_OS = "FirefoxOS";
8+
}

0 commit comments

Comments
 (0)