Skip to content

Providing W3C compliance #829

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Feb 13, 2018
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ compileJava {
]
}

ext.seleniumVersion = '3.8.1'
ext.seleniumVersion = '3.9.1'

dependencies {
compile ("org.seleniumhq.selenium:selenium-java:${seleniumVersion}") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ public interface MobileCapabilityType extends CapabilityType {
*/
String AUTOMATION_NAME = "automationName";

/**
* Which mobile OS platform to use.
*/
String PLATFORM_NAME = "platformName";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where this constant is present now?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in org.openqa.selenium.remote.CapabilityType

public interface MobileCapabilityType extends CapabilityType


/**
* Mobile OS version.
*/
Expand Down Expand Up @@ -120,4 +115,10 @@ public interface MobileCapabilityType extends CapabilityType {
* (e.g., the start and end of each command, etc.). Defaults to false.
*/
String EVENT_TIMINGS = "eventTimings";

/**
* This is the flag which forces server to switch to the mobile WSONWP.
* If {@code false} then it is switched to W3C mode.
*/
String FORCE_MJSONWP = "forceMjsonwp";
}
Loading