We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef8356c + 02b8087 commit 94de701Copy full SHA for 94de701
doc/README.md
@@ -108,6 +108,12 @@ The function's return value is exactly what is returned from the server as part
108
// GET /session/:sessionId/window/:windowHandle/size
109
$session->window()->size();
110
111
+* Send keystrokes to an element with 'POST'
112
+
113
+ // POST /session/:sessionId/element/:id/value
114
+ // getValue() is deprecated; use postValue($json) or value($json)
115
+ $element->postValue(array("value" => str_split('some text to send to element')));
116
117
## Some unavoidable exceptions to direct protocol translation.
118
119
* Opening pages
0 commit comments