1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (C) 2023 Michael Lee <imichael2e2@proton.me/...@gmail.com>
//
// Licensed under the MIT License <LICENSE-MIT or
// https://opensource.org/license/mit> or the GNU General Public License,
// Version 3.0 or any later version <LICENSE-GPL or
// https://www.gnu.org/licenses/gpl-3.0.txt>, at your option.
//
// This file may not be copied, modified, or distributed except except in
// compliance with either of the licenses.
//
//!
//! The module dedicated to WebDriver commands.
//!
//! Most WebDriver nodes interact with others through
//! WebDriver [command](https://w3c.github.io/webdriver/#commands)
//! in an active [session](https://w3c.github.io/webdriver/#commands).
//! This module encompasses the essential supports for
//! standard-mandated commands, such as Capability Pre-processing, Session
//! Customization, Command De/Serialization, etc.
//!
//! Wdcmd leverages [Serde](https://serde.rs) as de/serialization framework,
//! which allows for zero-copy
//! deserialization, ensuring a low memory footprint and latency as long as
//! being used properly.
//!
//! Wdcmd does not assume the node's type, as
//! [defined](https://w3c.github.io/webdriver/#nodes) by the W3C standard,
//! making it ready for any automation task with arbitrary node
//! orchestration. For instance, one client with one proxy and several servers.
///
/// Webdriver "Error Report" command.
///
/// Webdriver "New Session" command.
///
/// Webdriver "Status" command.
///
/// Webdriver "Navigate To" command.
///
/// Webdriver "Find Element(s)" command.
///
/// Webdriver "Perform Actions" command.