__init__.py |
|
969 |
bidi |
|
|
client.py |
API for creating and performing action sequences.
Each action method adds one or more actions to a queue. When perform()
is called, the queued actions fire in order.
May be chained together as in::
ActionSequence(session, "key", id) \
.key_down("a") \
.key_up("a") \
.perform()
|
30007 |
error.py |
|
6448 |
protocol.py |
WebDriver wire protocol codecs. |
2224 |
transport.py |
Implements HTTP transport for the WebDriver wire protocol. |
10024 |