Skip to content

Instantly share code, notes, and snippets.

View unikapps's full-sized avatar

Rachid ESSAKHI unikapps

View GitHub Profile
@unikapps
unikapps / selenium-php-webdriver-cheatsheet.md
Created February 10, 2018 21:34 — forked from aczietlow/selenium-php-webdriver-cheatsheet.md
Cheat sheet for using php webdriver (facebook/webdriver).

Webdriver PHP API workthough

  • Open a browser

    # start an instance of firefox with selenium-webdriver
    
    $browser_type = 'firefox'
    $host = 'http://localhost:4444/wd/hub'
    

$capabilities = array(\WebDriverCapabilityType::BROWSER_NAME => $browser_type);