Example usage for org.openqa.selenium.interactions Mouse interface-usage

List of usage examples for org.openqa.selenium.interactions Mouse interface-usage

Introduction

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

Usage

From source file com.machinepublishers.jbrowserdriver.Mouse.java

class Mouse implements org.openqa.selenium.interactions.Mouse {
    private final MouseRemote remote;
    private final SocketLock lock;

    Mouse(MouseRemote remote, SocketLock lock) {
        this.remote = remote;

From source file com.machinepublishers.jbrowserdriver.MouseServer.java

class MouseServer extends RemoteObject implements MouseRemote, org.openqa.selenium.interactions.Mouse {
    private final AtomicReference<Robot> robot;

    MouseServer(final AtomicReference<Robot> robot) throws RemoteException {
        this.robot = robot;
    }

From source file com.salesforce.selenium.support.event.internal.EventFiringMouse.java

/**
 * A mouse that fires events.
 * 
 * This is an extended version of org.openqa.selenium.support.events.internal.EventFiringMouse. See
 * https://seleniumhq.github.io/selenium/docs/api/java/org/openqa/selenium/support/events/internal/EventFiringMouse.html
 * for more information.

From source file org.usapi.MouseDummy.java

public class MouseDummy implements Mouse {
    private RemoteWebDriverDummy wd = null;

    public MouseDummy(RemoteWebDriverDummy wd) {
        this.wd = wd;
    }

From source file ru.stqa.selenium.decorated.DecoratedMouse.java

public class DecoratedMouse extends DecoratedChild<Mouse, DecoratedWebDriver> implements Mouse {

    public DecoratedMouse(final Mouse mouse, final DecoratedWebDriver driverWrapper) {
        super(mouse, driverWrapper);
    }