Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. $xhe_host = "127.0.0.1:7010";
  4.  
  5. // The following code is required to properly run XWeb Human Emulator
  6. require("../Templates/xweb_human_emulator.php");
  7.  
  8. //заходим в гугол
  9. $browser->navigate("https://google.com");
  10.  
  11. //кликаем на поисковую строку
  12. $mouse->click(742,349);
  13.  
  14. //вводим заданный текст
  15. $keyboard->send_input("textfile",10);
  16.  
  17.  
  18. // Quit
  19. $app->quit();
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement