Skip to content

Commit 5264548

Browse files
Fix toReturn["type"] (#10304)
1 parent 49321f1 commit 5264548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎dotnet/src/webdriver/Interactions/WheelInputDevice.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public override Dictionary<string, object> ToDictionary()
152152
{
153153
Dictionary<string, object> toReturn = new Dictionary<string, object>();
154154

155-
toReturn["type"] = "pointerMove";
155+
toReturn["type"] = "scroll";
156156
if (this.duration != TimeSpan.MinValue)
157157
{
158158
toReturn["duration"] = Convert.ToInt64(this.duration.TotalMilliseconds);

0 commit comments

Comments
 (0)