File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
dotnet/src/webdriver/Interactions Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
- // <copyright file="PauseInteraction.cs" company="WebDriver Committers">
1
+ // <copyright file="PauseInteraction.cs" company="WebDriver Committers">
2
2
// Licensed to the Software Freedom Conservancy (SFC) under one
3
3
// or more contributor license agreements. See the NOTICE file
4
4
// distributed with this work for additional information
18
18
19
19
using System ;
20
20
using System . Collections . Generic ;
21
+ using System . Globalization ;
21
22
using System . Linq ;
22
23
using System . Text ;
23
24
@@ -79,5 +80,10 @@ public override bool IsValidFor(InputDeviceKind sourceDeviceKind)
79
80
{
80
81
return true ;
81
82
}
83
+
84
+ public override string ToString ( )
85
+ {
86
+ return string . Format ( CultureInfo . InvariantCulture , "Pause [duration: {0} ms]" , this . duration . TotalMilliseconds ) ;
87
+ }
82
88
}
83
89
}
You can’t perform that action at this time.
0 commit comments