[][src]Struct selenium_webdriver::Actions

pub struct Actions { /* fields omitted */ }

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

impl Actions[src]

pub fn new() -> Actions[src]

pub fn add_key_actions(&mut self, key_actions: ActionsKeys) -> &mut Self[src]

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[src]

pub fn add_wheel_actions(&mut self, wheel_actions: ActionsWheel) -> &mut Self[src]

Trait Implementations

impl Debug for Actions[src]

impl<'de> Deserialize<'de> for Actions[src]

impl Serialize for Actions[src]

Auto Trait Implementations

impl RefUnwindSafe for Actions

impl Send for Actions

impl Sync for Actions

impl Unpin for Actions

impl UnwindSafe for Actions

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.