_generated\AcceptanceTesterActions::moveMouseOver PHP Method

moveMouseOver() public method

Move mouse over the first element matched by the given locator. If the second and third parameters are given, then the mouse is moved to an offset of the element's top-left corner. Otherwise, the mouse is moved to the center of the element. php moveMouseOver(['css' => '.checkout'], 20, 50); ?>
See also: Codeception\Module\WebDriver::moveMouseOver()
public moveMouseOver ( string $cssOrXPath, integer $offsetX = null, integer $offsetY = null )
$cssOrXPath string css or xpath of the web element
$offsetX integer
$offsetY integer
    public function moveMouseOver($cssOrXPath, $offsetX = null, $offsetY = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('moveMouseOver', func_get_args()));
    }
AcceptanceTesterActions