MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / AddPauseInput

Method AddPauseInput

cpp/iedriver/InputManager.cpp:648–654  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

646}
647
648void InputManager::AddPauseInput(HWND window_handle, int duration) {
649 // Leverage the INPUT_HARDWARE type.
650 INPUT pause_input;
651 pause_input.type = INPUT_HARDWARE;
652 pause_input.hi.uMsg = duration;
653 this->inputs_.push_back(pause_input);
654}
655
656void InputManager::AddMouseInput(HWND window_handle, long input_action, int x, int y) {
657 LOG(TRACE) << "Entering InputManager::AddMouseInput";

Callers 2

PointerMoveToMethod · 0.95
PauseMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected