Security update for permissions_by_term
[yaffs-website] / vendor / instaclick / php-webdriver / doc / README.md
diff --git a/vendor/instaclick/php-webdriver/doc/README.md b/vendor/instaclick/php-webdriver/doc/README.md
new file mode 100644 (file)
index 0000000..c5f366a
--- /dev/null
@@ -0,0 +1,208 @@
+php-webdriver -- A very thin wrapper of WebDriver
+=================================================
+
+##  DESCRIPTION
+
+This client aims to be as thin as possible, abusing the dynamic nature of PHP to allow almost all API calls to be a direct transformation of what is defined in the WebDriver protocol itself.
+
+Most clients require you to first read the protocol to see what's possible, then study the client itself to see how to call it.  This hopes to eliminate the latter step, and invites you to rely almost exclusively on https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
+
+Each command is just the name of a function call, and each additional path is just another chained function call.  The function parameter is then either an array() if the command takes JSON parameters, or an individual primitive if it takes a URL parameter.
+
+The function's return value is exactly what is returned from the server as part of the protocol definition.  If an error is returned, the function will throw the appropriate WebDriverException instance.
+
+##  GETTING STARTED
+
+*   All you need as the server for this client is the selenium-server-standalone-#.jar file provided here:  http://www.seleniumhq.org/download/
+
+*   Download and run that file, replacing # with the current server version.
+
+        java -jar selenium-server-standalone-#.jar
+
+*   Then when you create a session, be sure to pass the url to where your server is running.
+
+        // This would be the url of the host running the server-standalone.jar
+        $wd_host = 'http://localhost:4444/wd/hub'; // this is the default
+        $web_driver = new WebDriver($wd_host);
+
+        // First param to session() is the 'browserName' (default = 'firefox')
+        // Second param is a JSON object of additional 'desiredCapabilities'
+
+        // POST /session
+        $session = $web_driver->session('firefox');
+
+* See also [wiki page for launching different browsers](https://github.com/facebook/php-webdriver/wiki/Launching-Browsers).
+
+##  SIMPLE EXAMPLES
+
+### Note that all of these match the Protocol exactly
+*   Move to a specific spot on the screen
+
+        // POST /session/:sessionId/moveto
+        $session->moveto(array('xoffset' => 3, 'yoffset' => 300));
+
+*   Get the current url
+
+        // GET /session/:sessionId/url
+        $session->url();
+
+*   Change focus to another frame
+
+        // POST /session/:sessionId/frame
+        $session->frame(array('id' => 'some_frame_id'));
+
+*   Get a list of window handles for all open windows
+
+        // GET /session/:sessionId/window_handles
+        $session->window_handles();
+
+*   Accept the currently displayed alert dialog
+
+        // POST /session/:sessionId/accept_alert
+        $session->accept_alert();
+
+*   Change asynchronous script timeout
+
+        // POST /session/:sessionId/timeouts/async_script
+        $session->timeouts()->async_script(array('ms' => 2000));
+
+*   Doubleclick an element on a touch screen
+
+        // POST session/:sessionId/touch/doubleclick
+        $session->touch()->doubleclick(array('element' => $element->getID())
+
+*   Check if two elements are equal
+
+        // GET /session/:sessionId/element/:id/equals/:other
+        $element->equals($other_element->getID()))
+
+*   Get value of a css property on element
+
+        // GET /session/:sessionId/element/:id/css/:propertyName
+        $element->css($property_name)
+
+## 'GET', 'POST', or 'DELETE' to the same command examples
+
+### When you can do multiple http methods for the same command, call the command directly for the 'GET', and prepend the http method for the 'POST' or 'DELETE'.
+
+*   Set landscape orientation with 'POST'
+
+        // POST /session/:sessionId/orientation
+        $session->postOrientation(array('orientation' => 'LANDSCAPE'));
+
+*   Get landscape orientation with normal 'GET'
+
+        // GET /session/:sessionId/orientation
+        $session->orientation();
+
+*   Set size of window that has $window_handle with 'POST'
+
+        // If excluded, $window_handle defaults to 'current'
+        // POST /session/:sessionId/window/:windowHandle/size
+        $session
+          ->window($window_handle)
+          ->postSize(array('width' => 10, 'height' => 10));
+
+*   Get current window size with 'GET'
+
+        // GET /session/:sessionId/window/:windowHandle/size
+        $session->window()->size();
+
+* Send keystrokes to an element with 'POST'
+
+        // POST /session/:sessionId/element/:id/value
+        // getValue() is deprecated; use postValue($json) or value($json)
+        $element->postValue(array("value" => str_split('some text to send to element')));
+
+## Some unavoidable exceptions to direct protocol translation.
+
+*   Opening pages
+
+        // POST /session/:sessionId/url
+        $session->open('http://www.facebook.com');
+
+*   Dealing with the session
+
+        // DELETE /session/:sessionId
+        $session->close();
+
+        // GET /session/:sessionId
+        $session->capabilities();
+        
+*   To find elements
+
+        // POST /session/:sessionId/element
+        $element = $session->element($using, $value);
+
+        // POST /session/:sessionId/elements
+        $session->elements($using, $value);
+
+        // POST /session/:sessionId/element/:id/element
+        $element->element($using, $value);
+
+        // POST /session/:sessionId/element/:id/elements
+        $element->elements($using, $value);
+
+*   To get the active element
+
+        // POST /session/:sessionId/element/active
+        $session->activeElement();
+
+*   To manipulate cookies
+
+        // GET /session/:sessionId/cookie
+        $session->getAllCookies();
+
+        // POST /session/:sessionId/cookie
+        $session->setCookie($cookie_json);
+
+        // DELETE /session/:sessionId/cookie
+        $session->deleteAllCookies()
+
+        // DELETE /session/:sessionId/cookie/:name
+        $session->deleteCookie($name)
+
+*   To manipulate windows
+
+        // POST /session/:sessionId/window
+        $session->focusWindow($window_handle);
+
+        // DELETE /session/:sessionId/window
+        $session->deleteWindow();
+
+## More esoteric examples
+
+*   To set curl options (e.g., timeout and proxy settings)
+
+```
+use WebDriver\Service\CurlService;
+use WebDriver\ServiceFactory;
+
+class MyCurlService extends CurlService
+{
+    const PROXY = 'http://proxyHost:8080';
+    const AUTH = 'proxyUser:proxyPassword';
+
+    /**
+     * {@inheritdoc}
+     */
+    public function execute($requestMethod, $url, $parameters = null, $extraOptions = null)
+    {
+        $extraOptions = array_replace(
+            $extraOptions,
+            array(
+                CURLOPT_CONNECTTIMEOUT => 30,
+                CURLOPT_TIMEOUT => 300,
+                CURLOPT_PROXY => self::PROXY,
+                CURLOPT_PROXYUSERPWD => self::AUTH,
+            )
+        );
+
+        return parent::execute($requestMethod, $url, $parameters, $extraOptions);
+    }
+}
+
+ServiceFactory::setServiceClass('service.curl', 'MyCurlService');
+```
+
+