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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
|
/*
* Copyright (C) 2018, 2019 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "SimulatedInputDispatcher.h"
#if ENABLE(WEBDRIVER_ACTIONS_API)
#include "AutomationProtocolObjects.h"
#include "Logging.h"
#include "WebAutomationSession.h"
#include "WebAutomationSessionMacros.h"
#include <WebCore/PointerEventTypeNames.h>
#include <variant>
#if ENABLE(WEBDRIVER_KEYBOARD_GRAPHEME_CLUSTERS)
#include <wtf/text/TextBreakIterator.h>
#endif
namespace WebKit {
SimulatedInputSourceState SimulatedInputSourceState::emptyStateForSourceType(SimulatedInputSourceType type)
{
SimulatedInputSourceState result { };
switch (type) {
case SimulatedInputSourceType::Null:
case SimulatedInputSourceType::Keyboard:
break;
case SimulatedInputSourceType::Wheel:
result.scrollDelta = WebCore::IntSize();
FALLTHROUGH;
case SimulatedInputSourceType::Mouse:
case SimulatedInputSourceType::Touch:
case SimulatedInputSourceType::Pen:
result.location = WebCore::IntPoint();
}
return result;
}
SimulatedInputKeyFrame::SimulatedInputKeyFrame(Vector<StateEntry>&& entries)
: states(WTFMove(entries))
{
}
Seconds SimulatedInputKeyFrame::maximumDuration() const
{
// The "compute the tick duration" algorithm (§17.4 Dispatching Actions).
Seconds result;
for (auto& entry : states)
result = std::max(result, entry.second.duration.value_or(Seconds(0)));
return result;
}
SimulatedInputKeyFrame SimulatedInputKeyFrame::keyFrameFromStateOfInputSources(const HashMap<String, Ref<SimulatedInputSource>>& inputSources)
{
// The client of this class is required to intern SimulatedInputSource instances if the last state
// from the previous command should be used as the inital state for the next command. This is the
// case for Perform Actions and Release Actions, but not Element Click or Element Send Keys.
Vector<SimulatedInputKeyFrame::StateEntry> entries;
entries.reserveCapacity(inputSources.size());
for (const auto& inputSource : inputSources.values())
entries.uncheckedAppend(std::pair<SimulatedInputSource&, SimulatedInputSourceState> { inputSource.get(), inputSource->state });
return SimulatedInputKeyFrame(WTFMove(entries));
}
SimulatedInputKeyFrame SimulatedInputKeyFrame::keyFrameToResetInputSources(const HashMap<String, Ref<SimulatedInputSource>>& inputSources)
{
Vector<SimulatedInputKeyFrame::StateEntry> entries;
entries.reserveCapacity(inputSources.size());
for (const auto& inputSource : inputSources.values())
entries.uncheckedAppend(std::pair<SimulatedInputSource&, SimulatedInputSourceState> { inputSource.get(), SimulatedInputSourceState::emptyStateForSourceType(inputSource->type) });
return SimulatedInputKeyFrame(WTFMove(entries));
}
SimulatedInputDispatcher::SimulatedInputDispatcher(WebPageProxy& page, SimulatedInputDispatcher::Client& client)
: m_page(page)
, m_client(client)
, m_keyFrameTransitionDurationTimer(RunLoop::current(), this, &SimulatedInputDispatcher::keyFrameTransitionDurationTimerFired)
{
}
SimulatedInputDispatcher::~SimulatedInputDispatcher()
{
ASSERT(!m_runCompletionHandler);
ASSERT(!m_keyFrameTransitionDurationTimer.isActive());
}
bool SimulatedInputDispatcher::isActive() const
{
return !!m_runCompletionHandler;
}
void SimulatedInputDispatcher::keyFrameTransitionDurationTimerFired()
{
ASSERT(m_keyFrameTransitionCompletionHandler);
m_keyFrameTransitionDurationTimer.stop();
LOG(Automation, "SimulatedInputDispatcher[%p]: timer finished for transition between keyframes: %d --> %d", this, m_keyframeIndex - 1, m_keyframeIndex);
if (isKeyFrameTransitionComplete()) {
auto finish = std::exchange(m_keyFrameTransitionCompletionHandler, nullptr);
finish(std::nullopt);
}
}
bool SimulatedInputDispatcher::isKeyFrameTransitionComplete() const
{
ASSERT(m_keyframeIndex < m_keyframes.size());
if (m_inputSourceStateIndex < m_keyframes[m_keyframeIndex].states.size())
return false;
if (m_keyFrameTransitionDurationTimer.isActive())
return false;
return true;
}
void SimulatedInputDispatcher::transitionToNextKeyFrame()
{
++m_keyframeIndex;
if (m_keyframeIndex == m_keyframes.size()) {
finishDispatching(std::nullopt);
return;
}
transitionBetweenKeyFrames(m_keyframes[m_keyframeIndex - 1], m_keyframes[m_keyframeIndex], [this, protectedThis = Ref { *this }](std::optional<AutomationCommandError> error) {
if (error) {
finishDispatching(error);
return;
}
transitionToNextKeyFrame();
});
}
void SimulatedInputDispatcher::transitionToNextInputSourceState()
{
if (isKeyFrameTransitionComplete()) {
auto finish = std::exchange(m_keyFrameTransitionCompletionHandler, nullptr);
finish(std::nullopt);
return;
}
// In this case, transitions are done but we need to wait for the tick timer.
if (m_inputSourceStateIndex == m_keyframes[m_keyframeIndex].states.size())
return;
auto& nextKeyFrame = m_keyframes[m_keyframeIndex];
auto& postStateEntry = nextKeyFrame.states[m_inputSourceStateIndex];
SimulatedInputSource& inputSource = postStateEntry.first;
transitionInputSourceToState(inputSource, postStateEntry.second, [this, protectedThis = Ref { *this }](std::optional<AutomationCommandError> error) {
if (error) {
auto finish = std::exchange(m_keyFrameTransitionCompletionHandler, nullptr);
finish(error);
return;
}
// Perform state transitions in the order specified by the currentKeyFrame.
++m_inputSourceStateIndex;
transitionToNextInputSourceState();
});
}
void SimulatedInputDispatcher::transitionBetweenKeyFrames(const SimulatedInputKeyFrame& a, const SimulatedInputKeyFrame& b, AutomationCompletionHandler&& completionHandler)
{
m_inputSourceStateIndex = 0;
// The "dispatch tick actions" algorithm (§17.4 Dispatching Actions).
m_keyFrameTransitionCompletionHandler = WTFMove(completionHandler);
m_keyFrameTransitionDurationTimer.startOneShot(b.maximumDuration());
LOG(Automation, "SimulatedInputDispatcher[%p]: started transition between keyframes: %d --> %d", this, m_keyframeIndex - 1, m_keyframeIndex);
LOG(Automation, "SimulatedInputDispatcher[%p]: timer started to ensure minimum duration of %.2f seconds for transition %d --> %d", this, b.maximumDuration().value(), m_keyframeIndex - 1, m_keyframeIndex);
transitionToNextInputSourceState();
}
void SimulatedInputDispatcher::resolveLocation(const WebCore::IntPoint& currentLocation, std::optional<WebCore::IntPoint> location, MouseMoveOrigin origin, std::optional<String> nodeHandle, Function<void (std::optional<WebCore::IntPoint>, std::optional<AutomationCommandError>)>&& completionHandler)
{
if (!location) {
completionHandler(currentLocation, std::nullopt);
return;
}
switch (origin) {
case MouseMoveOrigin::Viewport:
completionHandler(location.value(), std::nullopt);
break;
case MouseMoveOrigin::Pointer: {
WebCore::IntPoint destination(currentLocation);
destination.moveBy(location.value());
completionHandler(destination, std::nullopt);
break;
}
case MouseMoveOrigin::Element: {
m_client.viewportInViewCenterPointOfElement(m_page, m_frameID, nodeHandle.value(), [destination = location.value(), completionHandler = WTFMove(completionHandler)](std::optional<WebCore::IntPoint> inViewCenterPoint, std::optional<AutomationCommandError> error) mutable {
if (error) {
completionHandler(std::nullopt, error);
return;
}
if (!inViewCenterPoint) {
completionHandler(std::nullopt, AUTOMATION_COMMAND_ERROR_WITH_NAME(ElementNotInteractable));
return;
}
destination.moveBy(inViewCenterPoint.value());
completionHandler(destination, std::nullopt);
});
break;
}
}
}
void SimulatedInputDispatcher::transitionInputSourceToState(SimulatedInputSource& inputSource, SimulatedInputSourceState& newState, AutomationCompletionHandler&& completionHandler)
{
// Make cases and conditionals more readable by aliasing pre/post states as 'a' and 'b'.
SimulatedInputSourceState& a = inputSource.state;
SimulatedInputSourceState& b = newState;
LOG(Automation, "SimulatedInputDispatcher[%p]: transition started between input source states: [%d.%d] --> %d.%d", this, m_keyframeIndex - 1, m_inputSourceStateIndex, m_keyframeIndex, m_inputSourceStateIndex);
AutomationCompletionHandler eventDispatchFinished = [this, &inputSource, &newState, completionHandler = WTFMove(completionHandler)](std::optional<AutomationCommandError> error) mutable {
if (error) {
completionHandler(error);
return;
}
#if !LOG_DISABLED
LOG(Automation, "SimulatedInputDispatcher[%p]: transition finished between input source states: %d.%d --> [%d.%d]", this, m_keyframeIndex - 1, m_inputSourceStateIndex, m_keyframeIndex, m_inputSourceStateIndex);
#else
UNUSED_PARAM(this);
#endif
inputSource.state = newState;
completionHandler(std::nullopt);
};
switch (inputSource.type) {
case SimulatedInputSourceType::Null:
// The maximum duration is handled at the keyframe level by m_keyFrameTransitionDurationTimer.
eventDispatchFinished(std::nullopt);
break;
case SimulatedInputSourceType::Mouse:
case SimulatedInputSourceType::Pen: {
#if !ENABLE(WEBDRIVER_MOUSE_INTERACTIONS)
RELEASE_ASSERT_NOT_REACHED();
#else
resolveLocation(valueOrDefault(a.location), b.location, b.origin.value_or(MouseMoveOrigin::Viewport), b.nodeHandle, [this, &a, &b, inputSource = inputSource.type, eventDispatchFinished = WTFMove(eventDispatchFinished)](std::optional<WebCore::IntPoint> location, std::optional<AutomationCommandError> error) mutable {
if (error) {
eventDispatchFinished(error);
return;
}
if (!location) {
eventDispatchFinished(AUTOMATION_COMMAND_ERROR_WITH_NAME(ElementNotInteractable));
return;
}
const String& pointerType = inputSource == SimulatedInputSourceType::Mouse ? WebCore::mousePointerEventType() : WebCore::penPointerEventType();
b.location = location;
// The "dispatch a pointer{Down,Up,Move} action" algorithms (§17.4 Dispatching Actions).
if (!a.pressedMouseButton && b.pressedMouseButton) {
#if !LOG_DISABLED
String mouseButtonName = Inspector::Protocol::AutomationHelpers::getEnumConstantValue(b.pressedMouseButton.value());
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating MouseDown[button=%s] @ (%d, %d) for transition to %d.%d", this, mouseButtonName.utf8().data(), b.location.value().x(), b.location.value().y(), m_keyframeIndex, m_inputSourceStateIndex);
#endif
m_client.simulateMouseInteraction(m_page, MouseInteraction::Down, b.pressedMouseButton.value(), b.location.value(), pointerType, WTFMove(eventDispatchFinished));
} else if (a.pressedMouseButton && !b.pressedMouseButton) {
#if !LOG_DISABLED
String mouseButtonName = Inspector::Protocol::AutomationHelpers::getEnumConstantValue(a.pressedMouseButton.value());
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating MouseUp[button=%s] @ (%d, %d) for transition to %d.%d", this, mouseButtonName.utf8().data(), b.location.value().x(), b.location.value().y(), m_keyframeIndex, m_inputSourceStateIndex);
#endif
m_client.simulateMouseInteraction(m_page, MouseInteraction::Up, a.pressedMouseButton.value(), b.location.value(), pointerType, WTFMove(eventDispatchFinished));
} else if (a.location != b.location) {
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating MouseMove from (%d, %d) to (%d, %d) for transition to %d.%d", this, a.location.value().x(), a.location.value().y(), b.location.value().x(), b.location.value().y(), m_keyframeIndex, m_inputSourceStateIndex);
// FIXME: This does not interpolate mousemoves per the "perform a pointer move" algorithm (§17.4 Dispatching Actions).
m_client.simulateMouseInteraction(m_page, MouseInteraction::Move, b.pressedMouseButton.value_or(MouseButton::None), b.location.value(), pointerType, WTFMove(eventDispatchFinished));
} else
eventDispatchFinished(std::nullopt);
});
#endif // ENABLE(WEBDRIVER_MOUSE_INTERACTIONS)
break;
}
case SimulatedInputSourceType::Touch: {
#if !ENABLE(WEBDRIVER_TOUCH_INTERACTIONS)
RELEASE_ASSERT_NOT_REACHED();
#else
resolveLocation(valueOrDefault(a.location), b.location, b.origin.value_or(MouseMoveOrigin::Viewport), b.nodeHandle, [this, &a, &b, eventDispatchFinished = WTFMove(eventDispatchFinished)](std::optional<WebCore::IntPoint> location, std::optional<AutomationCommandError> error) mutable {
if (error) {
eventDispatchFinished(error);
return;
}
if (!location) {
eventDispatchFinished(AUTOMATION_COMMAND_ERROR_WITH_NAME(ElementNotInteractable));
return;
}
b.location = location;
// The "dispatch a pointer{Down,Up,Move} action" algorithms (§17.4 Dispatching Actions).
if (!a.pressedMouseButton && b.pressedMouseButton) {
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating TouchDown @ (%d, %d) for transition to %d.%d", this, b.location.value().x(), b.location.value().y(), m_keyframeIndex, m_inputSourceStateIndex);
m_client.simulateTouchInteraction(m_page, TouchInteraction::TouchDown, b.location.value(), std::nullopt, WTFMove(eventDispatchFinished));
} else if (a.pressedMouseButton && !b.pressedMouseButton) {
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating LiftUp @ (%d, %d) for transition to %d.%d", this, b.location.value().x(), b.location.value().y(), m_keyframeIndex, m_inputSourceStateIndex);
m_client.simulateTouchInteraction(m_page, TouchInteraction::LiftUp, b.location.value(), std::nullopt, WTFMove(eventDispatchFinished));
} else if (a.location != b.location) {
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating MoveTo from (%d, %d) to (%d, %d) for transition to %d.%d", this, a.location.value().x(), a.location.value().y(), b.location.value().x(), b.location.value().y(), m_keyframeIndex, m_inputSourceStateIndex);
m_client.simulateTouchInteraction(m_page, TouchInteraction::MoveTo, b.location.value(), a.duration.value_or(0_s), WTFMove(eventDispatchFinished));
} else
eventDispatchFinished(std::nullopt);
});
#endif // !ENABLE(WEBDRIVER_TOUCH_INTERACTIONS)
break;
}
case SimulatedInputSourceType::Keyboard: {
#if !ENABLE(WEBDRIVER_KEYBOARD_INTERACTIONS)
RELEASE_ASSERT_NOT_REACHED();
#else
auto comparePressedCharKeys = [](const auto& a, const auto& b) {
if (a.size() != b.size())
return false;
for (const auto& charKey : a) {
if (!b.contains(charKey))
return false;
}
return true;
};
// The "dispatch a key{Down,Up} action" algorithms (§17.4 Dispatching Actions).
if (!comparePressedCharKeys(a.pressedCharKeys, b.pressedCharKeys)) {
bool simulatedAnInteraction = false;
for (auto charKey : b.pressedCharKeys) {
if (!a.pressedCharKeys.contains(charKey)) {
#if ENABLE(WEBDRIVER_KEYBOARD_GRAPHEME_CLUSTERS)
ASSERT_WITH_MESSAGE(WTF::numGraphemeClusters(charKey) <= 1, "A CharKey must either be a single unicode code point, a single grapheme cluster, or null.");
#endif
ASSERT_WITH_MESSAGE(!simulatedAnInteraction, "Only one CharKey may differ at a time between two input source states.");
if (simulatedAnInteraction)
continue;
simulatedAnInteraction = true;
#if ENABLE(WEBDRIVER_KEYBOARD_GRAPHEME_CLUSTERS)
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating KeyPress[key=%s] for transition to %d.%d", this, charKey.utf8().data(), m_keyframeIndex, m_inputSourceStateIndex);
#else
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating KeyPress[key=%c] for transition to %d.%d", this, charKey, m_keyframeIndex, m_inputSourceStateIndex);
#endif
m_client.simulateKeyboardInteraction(m_page, KeyboardInteraction::KeyPress, charKey, WTFMove(eventDispatchFinished));
}
}
for (auto charKey : a.pressedCharKeys) {
if (!b.pressedCharKeys.contains(charKey)) {
#if ENABLE(WEBDRIVER_KEYBOARD_GRAPHEME_CLUSTERS)
ASSERT_WITH_MESSAGE(WTF::numGraphemeClusters(charKey) <= 1, "A CharKey must either be a single unicode code point, a single grapheme cluster, or null.");
#endif
ASSERT_WITH_MESSAGE(!simulatedAnInteraction, "Only one CharKey may differ at a time between two input source states.");
if (simulatedAnInteraction)
continue;
simulatedAnInteraction = true;
#if ENABLE(WEBDRIVER_KEYBOARD_GRAPHEME_CLUSTERS)
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating KeyRelease[key=%s] for transition to %d.%d", this, charKey.utf8().data(), m_keyframeIndex, m_inputSourceStateIndex);
#else
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating KeyRelease[key=%c] for transition to %d.%d", this, charKey, m_keyframeIndex, m_inputSourceStateIndex);
#endif
m_client.simulateKeyboardInteraction(m_page, KeyboardInteraction::KeyRelease, charKey, WTFMove(eventDispatchFinished));
}
}
} else if (a.pressedVirtualKeys != b.pressedVirtualKeys) {
bool simulatedAnInteraction = false;
for (const auto& iter : b.pressedVirtualKeys) {
if (!a.pressedVirtualKeys.contains(iter.key)) {
ASSERT_WITH_MESSAGE(!simulatedAnInteraction, "Only one VirtualKey may differ at a time between two input source states.");
if (simulatedAnInteraction)
continue;
simulatedAnInteraction = true;
#if !LOG_DISABLED
String virtualKeyName = Inspector::Protocol::AutomationHelpers::getEnumConstantValue(iter.value);
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating KeyPress[key=%s] for transition to %d.%d", this, virtualKeyName.utf8().data(), m_keyframeIndex, m_inputSourceStateIndex);
#endif
m_client.simulateKeyboardInteraction(m_page, KeyboardInteraction::KeyPress, iter.value, WTFMove(eventDispatchFinished));
}
}
for (const auto& iter : a.pressedVirtualKeys) {
if (!b.pressedVirtualKeys.contains(iter.key)) {
ASSERT_WITH_MESSAGE(!simulatedAnInteraction, "Only one VirtualKey may differ at a time between two input source states.");
if (simulatedAnInteraction)
continue;
simulatedAnInteraction = true;
#if !LOG_DISABLED
String virtualKeyName = Inspector::Protocol::AutomationHelpers::getEnumConstantValue(iter.value);
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating KeyRelease[key=%s] for transition to %d.%d", this, virtualKeyName.utf8().data(), m_keyframeIndex, m_inputSourceStateIndex);
#endif
m_client.simulateKeyboardInteraction(m_page, KeyboardInteraction::KeyRelease, iter.value, WTFMove(eventDispatchFinished));
}
}
} else
eventDispatchFinished(std::nullopt);
#endif // !ENABLE(WEBDRIVER_KEYBOARD_INTERACTIONS)
break;
}
case SimulatedInputSourceType::Wheel:
#if !ENABLE(WEBDRIVER_WHEEL_INTERACTIONS)
RELEASE_ASSERT_NOT_REACHED();
#else
resolveLocation(valueOrDefault(a.location), b.location, b.origin.value_or(MouseMoveOrigin::Viewport), b.nodeHandle, [this, &a, &b, eventDispatchFinished = WTFMove(eventDispatchFinished)](std::optional<WebCore::IntPoint> location, std::optional<AutomationCommandError> error) mutable {
if (error) {
eventDispatchFinished(error);
return;
}
if (!location) {
eventDispatchFinished(AUTOMATION_COMMAND_ERROR_WITH_NAME(ElementNotInteractable));
return;
}
b.location = location;
if (!a.scrollDelta->isZero())
b.scrollDelta->contract(a.scrollDelta->width(), a.scrollDelta->height());
if (!b.scrollDelta->isZero()) {
LOG(Automation, "SimulatedInputDispatcher[%p]: simulating Wheel from (%d, %d) to (%d, %d) for transition to %d.%d", this, a.scrollDelta->width(), a.scrollDelta->height(), b.scrollDelta->width(), b.scrollDelta->height(), m_keyframeIndex, m_inputSourceStateIndex);
// FIXME: This does not interpolate mouse scrolls per the "perform a scroll" algorithm (§15.4.4 Wheel actions).
m_client.simulateWheelInteraction(m_page, b.location.value(), b.scrollDelta.value(), WTFMove(eventDispatchFinished));
} else
eventDispatchFinished(std::nullopt);
});
#endif // !ENABLE(WEBDRIVER_WHEEL_INTERACTIONS)
break;
}
}
void SimulatedInputDispatcher::run(std::optional<WebCore::FrameIdentifier> frameID, Vector<SimulatedInputKeyFrame>&& keyFrames, const HashMap<String, Ref<SimulatedInputSource>>& inputSources, AutomationCompletionHandler&& completionHandler)
{
ASSERT(!isActive());
if (isActive()) {
completionHandler(AUTOMATION_COMMAND_ERROR_WITH_NAME(InternalError));
return;
}
m_frameID = frameID;
m_runCompletionHandler = WTFMove(completionHandler);
// The "dispatch actions" algorithm (§17.4 Dispatching Actions).
m_keyframes.reserveCapacity(keyFrames.size() + 1);
m_keyframes.append(SimulatedInputKeyFrame::keyFrameFromStateOfInputSources(inputSources));
m_keyframes.appendVector(WTFMove(keyFrames));
LOG(Automation, "SimulatedInputDispatcher[%p]: starting input simulation using %zu keyframes", this, m_keyframes.size());
transitionToNextKeyFrame();
}
void SimulatedInputDispatcher::cancel()
{
// If we were waiting for m_client to finish an interaction and the interaction had an error,
// then the rest of the async chain will have been torn down. If we are just waiting on a
// dispatch timer, then this will cancel the timer and clear
if (isActive())
finishDispatching(AUTOMATION_COMMAND_ERROR_WITH_NAME(InternalError));
}
void SimulatedInputDispatcher::finishDispatching(std::optional<AutomationCommandError> error)
{
m_keyFrameTransitionDurationTimer.stop();
LOG(Automation, "SimulatedInputDispatcher[%p]: finished all input simulation at [%u.%u]", this, m_keyframeIndex, m_inputSourceStateIndex);
auto finish = std::exchange(m_runCompletionHandler, nullptr);
m_frameID = std::nullopt;
m_keyframes.clear();
m_keyframeIndex = 0;
m_inputSourceStateIndex = 0;
finish(error);
}
} // namespace Webkit
#endif // ENABLE(WEBDRIVER_ACTIONS_API)
|