Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/WebDriver/Ime.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
*
* @method array available_engines() List all available engines on the machines.
* @method string active_engine() Get the name of the active IME engine.
* @method boolean activated() Indicates whether IME input is active at the momeent.
* @method void deactivate() De-activates the curently active IME engine.
* @method boolean activated() Indicates whether IME input is active at the moment.
* @method void deactivate() De-activates the currently active IME engine.
* @method void activate($json) Make an engine that is available active.
*/
final class Ime extends AbstractWebDriver
Expand Down
2 changes: 1 addition & 1 deletion lib/WebDriver/SauceLabs/SauceRest.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function getAccountLimits()
/**
* Create new sub-account: /rest/v1/users/:userId (POST)
*
* For "parterns", $accountInfo also contains 'plan' => (one of 'free', 'small', 'team', 'com', or 'complus')
* For "partners", $accountInfo also contains 'plan' => (one of 'free', 'small', 'team', 'com', or 'complus')
*
* @param array $accountInfo array('username' => ..., 'password' => ..., 'name' => ..., 'email' => ...)
*
Expand Down
4 changes: 2 additions & 2 deletions lib/WebDriver/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
* @method void postAlert_text($jsonText) Sends keystrokes to a JavaScript prompt() dialog.
* @method void accept_alert() Accepts the currently displayed alert dialog.
* @method void dismiss_alert() Dismisses the currently displayed alert dialog.
* @method void moveto($jsonCoordinates) Move the mouse by an offset of the specificed element (or current mouse cursor).
* @method void moveto($jsonCoordinates) Move the mouse by an offset of the specified element (or current mouse cursor).
* @method void click($jsonButton) Click any mouse button (at the coordinates set by the last moveto command).
* @method void buttondown() Click and hold the left mouse button (at the coordinates set by the last moveto command).
* @method void buttonup() Releases the mouse button previously held (where the mouse is currently at).
Expand Down Expand Up @@ -270,7 +270,7 @@ public function focusWindow($name)

/**
* timeouts methods: /session/:sessionId/timeouts (POST)
* - $session->timesouts($json) - set timeout for an operation
* - $session->timeouts($json) - set timeout for an operation
* - $session->timeouts()->method() - chaining
*
* @return \WebDriver\Timeouts
Expand Down
6 changes: 3 additions & 3 deletions lib/WebDriver/WebTest/WebTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* WebDriver\WebTest\WebTest class - test runner
*
* WebDriver-based web test runner, outputing results in TAP format.
* WebDriver-based web test runner, outputting results in TAP format.
*
* @package WebDriver
*
Expand Down Expand Up @@ -165,8 +165,8 @@ public function getDirective($comment)
/**
* Is this a testable method?
*
* @param string $className Class name
* @param \RefelectionMethod $reflectionMethod Reflection method
* @param string $className Class name
* @param \ReflectionMethod $reflectionMethod Reflection method
*
* @return boolean False if method should not be counted
*/
Expand Down