We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ActionSequence.inputDevice
1 parent df3fb76 commit f1f4768Copy full SHA for f1f4768
dotnet/src/webdriver/Interactions/ActionSequence.cs
@@ -72,6 +72,7 @@ public int Count
72
/// Gets the input device for this Action sequence.
73
/// </summary>
74
[Obsolete("This property has been renamed to InputDevice and will be removed in a future version")]
75
+ [CLSCompliant(false)]
76
public InputDevice inputDevice => InputDevice;
77
78
/// <summary>
dotnet/src/webdriver/Interactions/Actions.cs
@@ -138,7 +138,7 @@ private InputDevice FindDeviceById(string name)
138
139
if (id == name)
140
{
141
- return sequence.inputDevice;
+ return sequence.InputDevice;
142
}
143
144
0 commit comments