diff --git a/scriptedbrowser/commands/base.php b/scriptedbrowser/commands/base.php index 5869aed..28f8544 100644 --- a/scriptedbrowser/commands/base.php +++ b/scriptedbrowser/commands/base.php @@ -77,7 +77,7 @@ function mousemove($main, $control, $options) : bool { $element = $control->selectCSS($main->vars($options['parameter'])); $mouseOffset = $main->getMouseOffset(); - if ($element === []) { + if ($element === [] || array_key_exists('error', $element)) { return false; } $element = array_values($element)[0];