scripts//prodvigenie_04_2026
/scripts//prodvigenie_04_2026
Содержимое папки
📁 Папок: 1 | 📄 Файлов: 9
mouse-position.php
<?php
$xhe_host = "127.0.0.1:7011";
// The following code is required to properly run XWeb Human Emulator
require("../../Templates/init.php");
sleep(8);
$x = $mouse->get_x();
$y = $mouse->get_y();
echo $xy=$x." , " .$y;
$vscroll = $browser->get_vertical_scroll_pos();
$clipboard->put_text($vscroll);sleep(1);
$clipboard->put_text($xy);sleep(1);
echo $mouse->get_position(true)."<br>";
echo $mouse->get_position(false)."<br>";
// Quit
$app->quit();
?>