PHP code example of masga / laravel-chromedriver
1. Go to this page and download the library: Download masga/laravel-chromedriver library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
masga / laravel-chromedriver example snippets
use Facebook\WebDriver\WebDriverBy;
use Masga\ChromeDriver\Facades\Browser;
Route::get('/browser', function () {
Browser::start();
// Get driver
$driver = Browser::getDriver();
// Go to URL
$driver->get('https://en.wikipedia.org/wiki/Selenium_(software)');
// Find search element by its id, write 'PHP' inside and submit
$driver->findElement(WebDriverBy::id('searchInput')) // find search input element
->sendKeys('PHP') // fill the search box
->submit(); // submit the whole form
// Find element of 'History' item in menu by its css selector
$historyButton = $driver->findElement(
WebDriverBy::cssSelector('#ca-history a')
);
$btnText = $historyButton->getText();
// Terminate browser quickly. (optional)
// Browser::quit();
return 'About to click to a button with text: ' . $btnText;
});
bash
php artisan vendor:publish --tag=chromedriver-config