Selenium: Proxy Auth with Chrome Capabilities for Chrome/Chromium
Still troubleshooting chromium under linux.
These are only notes
Java implementation
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
Java implementation
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
{
$this->webDriver->get($this->url);
$id = $this->webDriver->findElement(WebDriverBy::id("email"));
$id->sendKeys("email
From : https://www.w3.org/TR/webdriver/
Implementation of W3 by chrome : https://chromium.googlesource.com/chromium/src/+/lkgr/docs/chromedriver_status.md
Implementation of W3 by Microsoft (Edge) : https://docs.microsoft.com/en-us/microsoft-edge/webdriver#commands
Implementation of W3 by Apple (Safari) : https://developer.apple.com/documentation/webkit/macos_webdriver_commands_for_safari_12_and_later
PHP: Locate installation Directory
php --ini
<?php phpinfo(); ?>
<?php
// prints e.g. 'Current PHP version: 4.1.1'
echo 'Current PHP version: ' . phpversion();
?>
If you are using the PHP CLI, then try using theese shell commands (i'm assuming that you are using linux here)
which php - will locate the php executable (this should be the default php used by you)
whereis php - The first path displayed will be the location of the php executable
echo $PATH - will print a list of paths separated by ":" where the system looks for commands
composer.json
composer.phar
Copyright 2018· All rights reserved