This repository was archived by the owner on Apr 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
WebDriver
Atip Kajitamkul edited this page Oct 13, 2024
·
15 revisions
a remote control interface for the web browser using driver server and communicate via wire protocol. more info
Webdriver normally communicate between two sides. more info
provides a API on top of this protocol in the form of language-specific libraries.
handles browser commands classified into two types of nodes:
- Intermediary Node:
- Acts as a proxy between the local end (client) and the remote end (browser)
- It forwards the communication but does not directly implement the steps of the protocol that interact with the browser.
- Nodes between an intermediary node and the endpoint node are considered upstream of the endpoint node.
- Endpoint Node:
- The final destination in the communication chain, which directly implements the WebDriver protocol's steps.
- This is typically the browser itself that executes the commands from the client.
Most of them follow the standard W3C WebDriver which provide structure of the protocol and how this driver will be implemented.
Meetings
Meeting 1Meeting 2
Meeting 3
Meeting 4
Meeting 5
Meeting 6
Meeting 7
Meeting 8
Meeting 9
Meeting 10
Meeting 11
Meeting 12
Meeting 13
Meeting 14
Meeting 15
Meeting 16
Meeting 17
Meeting 18
Meeting 19