codetether-browser 0.1.0

Browser automation runtime for CodeTether
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::Serialize;

#[derive(Debug, Clone, Serialize)]
pub struct PointerClick {
    pub x: f64,
    pub y: f64,
}

#[derive(Debug, Clone, Serialize)]
pub struct KeyboardTypeRequest {
    pub text: String,
}

#[derive(Debug, Clone, Serialize)]
pub struct KeyboardPressRequest {
    pub key: String,
}