( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
<?php
require 'vendor/autoload.php';
use Facebook\WebDriver\Remote\RemoteWebDriver;
use Facebook\WebDriver\WebDriverBy;
// Replace 'localhost:4444' with the actual Selenium server address
$host = 'http://3.128.253.3:4444/wd/hub';
$driver = RemoteWebDriver::create($host, \Facebook\WebDriver\WebDriverBrowserType::CHROME);
$driver->get('https://www.example.com');
// Find an element and interact with it
$element = $driver->findElement(WebDriverBy::name('q'));
$element->sendKeys('Hello, Selenium!');
$element->submit();
// Close the browser
$driver->quit();
?>