deleteRequest method

dynamic deleteRequest(
  1. String command
)

Performs delete request on command to the WebDriver server.

For use by supporting WebDriver packages.

Implementation

dynamic deleteRequest(String command) => _client.send(
      _handler.buildGeneralRequest(HttpMethod.httpDelete, command),
      (response) => _handler.parseGeneralResponse(
        response,
        (elementId) => getElement(elementId, this),
      ),
    );