Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 All @@ -61,12 +56,6 @@ public interface MobileCapabilityType extends CapabilityType {
*/
String APP = "app";

/**
* Name of mobile web browser to automate.
* Should be an empty string if automating an app instead.
*/
String BROWSER_NAME = "browserName";

/**
* Unique device identifier of the connected physical device.
*/
Expand Down Expand Up @@ -120,4 +109,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