pub struct Actions { /* private fields */ }
Expand description
Main actions struct
The Actions which should be permormed via the perform_actions and release_actions methods of the Browser instance, may consist of keys actions, scroll wheel actions and mouse actions. Once you construct the corresponding actions sequence it should be passed to the add_…_actions method to be added to the main Actions instance. When constructing complex scenarious with multiple input sources(key,mouse,wheel), you need to use pauses to syncronize actions and achieve more predictable result (see “https://www.w3.org/TR/webdriver/#actions” for more details).
The order of the adding input source to Actions may also influence the outcome.
§Examples
let mut mouse = ActionsMouse::new();
let mut keys = ActionsKeys::new();
mouse.press_mouse_button(MouseButton::Left).pause(0).release_mouse_button(MouseButton::Left);
keys.pause(0).press_special_key(SpecialKey::Enter);
let mut actions = Actions::new();
actions.add_mouse_actions(mouse).add_key_actions(keys);
Implementations§
Source§impl Actions
impl Actions
pub fn new() -> Actions
Sourcepub fn add_key_actions(&mut self, key_actions: ActionsKeys) -> &mut Self
pub fn add_key_actions(&mut self, key_actions: ActionsKeys) -> &mut Self
Add the key actions sequence to the global list of actions
§Examples
let mut keys = ActionsKeys::new();
keys.press_special_key(SpecialKey::ShiftLeft).press_key("a");
let mut actions = Actions::new();
actions.add_key_actions(keys);
pub fn add_mouse_actions(&mut self, mouse_actions: ActionsMouse) -> &mut Self
pub fn add_wheel_actions(&mut self, wheel_actions: ActionsWheel) -> &mut Self
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Actions
impl<'de> Deserialize<'de> for Actions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Actions
impl RefUnwindSafe for Actions
impl Send for Actions
impl Sync for Actions
impl Unpin for Actions
impl UnwindSafe for Actions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more