MovePointerToMouseOverRector

Replace deprecated movePointerTo() with getSession()->getDriver()->mouseOver()

-$this->movePointerTo('#my-element');
+$this->getSession()->getDriver()->mouseOver('.//*[@id="my-element"]');

Configure your rector.php:

<?php

use DrupalRector\Drupal11\Rector\Deprecation\MovePointerToMouseOverRector;
use Rector\Config\RectorConfig;

return RectorConfig::configure()
    ->withRules([
        MovePointerToMouseOverRector::class,
    ]);

Other rules in the drupal/core 11.1 set