Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Code début Selenium PHP

<?php

namespace FacebookWebDriver;

use FacebookWebDriverRemoteDesiredCapabilities;
use FacebookWebDriverRemoteRemoteWebDriver;

require_once 'vendor/autoload.php';

$host = 'http://localhost:4444/';
$ops = new ChromeOptions();
$ops->setExperimentalOption("excludeSwitches", array("enable-automation"));
$capabilities = DesiredCapabilities::chrome();
$capabilities->setCapability(ChromeOptions::CAPABILITY, $ops);

$driver = RemoteWebDriver::create($host, $capabilities);

// open google page on chrome
$driver->get('https://www.google.com');

// fullscreen
$driver->manage()->window()->maximize();

// TODO: code...

echo "the program ended successfully
";

sleep(60);

// terminate the session and close the browser
$driver->quit();
Comment

PREVIOUS NEXT
Code Example
Php :: elasticsearch php filter range 
Php :: php integer to js integer 
Php :: How to post a mutlipart file using file_get_contents in php 
Php :: Problem getting updated value from child component to the parent component in a Laravel 9 with Vue 
Php :: extract date from DateTime object php 
Php :: wordpress page template comment 
Php :: how get end of array in foreach php 
Php :: pass messages laravel 
Php :: how i can send by database table in laravel full calendar 
Php :: limit query laravel 
Php :: RouteSubscriber disallow user routes 
Php :: Check box group submit (php) 
Php :: Comment exiger une longueur minimale de commentaire dans WordPress 
Php :: How to validate Envato Purchase Code in PHP 
Php :: rename image file using post id in wordpress programmatically 
Php :: Issue with Generating Random Numbers using Laravel contains vs foreach loop 
Php :: yii2 modules commands are not showing in console 
Php :: PHP strpbrk — Search a string for any of a set of characters 
Php :: js data php 
Php :: laravel upsert always inserting 
Php :: web.php file handling user request 
Php :: laravel simple 
Php :: without login cant purchase woocommerce 
Php :: php random array name 
Php :: publish algolia search in laravel 
Php :: -inurl:(htm/html/php/pls/txt) intitle:index.of "last modified" (mp4/wma/aac/avi) 
Php :: how to increase wp mailster attachment size 
Php :: laravel gigapay resend payout notification 
Php :: wordpress add menu frontend 
Php :: chunk in laravel 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =