Example usage for org.openqa.selenium.remote.http HttpMethod DELETE

List of usage examples for org.openqa.selenium.remote.http HttpMethod DELETE

Introduction

In this page you can find the example usage for org.openqa.selenium.remote.http HttpMethod DELETE.

Prototype

HttpMethod DELETE

To view the source code for org.openqa.selenium.remote.http HttpMethod DELETE.

Click Source Link

Usage

From source file:com.mengge.MobileCommand.java

License:Apache License

/**
 * This methods forms DELETE commands./*from   w  w  w  .  j av a2s. c o  m*/
 *
 * @param url is the command URL
 * @return an instance of {@link org.openqa.selenium.remote.CommandInfo}
 */
public static CommandInfo deleteC(String url) {
    return new CommandInfo(url, HttpMethod.DELETE);
}

From source file:io.appium.java_client.AppiumDriver.java

License:Apache License

@SuppressWarnings("unused")
private static CommandInfo deleteC(String url) {
    return new CommandInfo(url, HttpMethod.DELETE);
}