PMA_SeleniumBase::moveto PHP Method

moveto() public method

Wrapper around moveto method to not use it on not supported browsers.
public moveto ( object $element ) : void
$element object element
return void
    public function moveto($element)
    {
        /**
         * Not supported in Safari Webdriver, see
         * https://github.com/seleniumhq/selenium-google-code-issue-archive/issues/4136
         */
        if (mb_strtolower($this->getBrowser()) == 'safari') {
            $this->markTestSkipped('MoveTo not supported on Safari browser.');
        }
        parent::moveto($element);
    }