Example usage for org.openqa.selenium.interactions Mouse contextClick

List of usage examples for org.openqa.selenium.interactions Mouse contextClick

Introduction

In this page you can find the example usage for org.openqa.selenium.interactions Mouse contextClick.

Prototype

void contextClick(Coordinates where);

Source Link

Usage

From source file:org.specrunner.webdriver.actions.input.mouse.PluginContextClickCoordinates.java

License:Open Source License

@Override
protected void doEnd(IContext context, IResultSet result, WebDriver client, HasInputDevices input, Mouse mouse)
        throws PluginException {
    mouse.contextClick(getCoordinates());
    result.addResult(Success.INSTANCE, context.peek());
}