Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/Appium.Net/Appium/Interactions/PointerInputDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
using OpenQA.Selenium.Interactions;
using System;
using System.Collections.Generic;
using System.Linq;

namespace OpenQA.Selenium.Appium.Interactions
{
Expand Down Expand Up @@ -206,7 +205,10 @@ public override Dictionary<string, object> ToDictionary()
Dictionary<string, object> toReturn = wrappedInteraction.ToDictionary();

// Append the original payload with the given pointer input extra attributes
pointerInputExtraAttributes.ToList().ForEach(x => toReturn[x.Key] = x.Value);
foreach (var x in pointerInputExtraAttributes)
{
toReturn[x.Key] = x.Value;
}

return toReturn;
}
Expand Down
Loading