Skip to content

Commit 409e6f3

Browse files
Merge pull request #829 from TikhomirovSergey/master
Providing W3C compliance
2 parents 7da2d6c + 6ffd2ea commit 409e6f3

File tree

3 files changed

+540
-12
lines changed

3 files changed

+540
-12
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ compileJava {
5050
]
5151
}
5252

53-
ext.seleniumVersion = '3.8.1'
53+
ext.seleniumVersion = '3.9.1'
5454

5555
dependencies {
5656
compile ("org.seleniumhq.selenium:selenium-java:${seleniumVersion}") {

src/main/java/io/appium/java_client/remote/MobileCapabilityType.java

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ public interface MobileCapabilityType extends CapabilityType {
3131
*/
3232
String AUTOMATION_NAME = "automationName";
3333

34-
/**
35-
* Which mobile OS platform to use.
36-
*/
37-
String PLATFORM_NAME = "platformName";
38-
3934
/**
4035
* Mobile OS version.
4136
*/
@@ -61,12 +56,6 @@ public interface MobileCapabilityType extends CapabilityType {
6156
*/
6257
String APP = "app";
6358

64-
/**
65-
* Name of mobile web browser to automate.
66-
* Should be an empty string if automating an app instead.
67-
*/
68-
String BROWSER_NAME = "browserName";
69-
7059
/**
7160
* Unique device identifier of the connected physical device.
7261
*/
@@ -120,4 +109,10 @@ public interface MobileCapabilityType extends CapabilityType {
120109
* (e.g., the start and end of each command, etc.). Defaults to false.
121110
*/
122111
String EVENT_TIMINGS = "eventTimings";
112+
113+
/**
114+
* This is the flag which forces server to switch to the mobile WSONWP.
115+
* If {@code false} then it is switched to W3C mode.
116+
*/
117+
String FORCE_MJSONWP = "forceMjsonwp";
123118
}

0 commit comments

Comments
 (0)