We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db4d9eb commit 8d0c109Copy full SHA for 8d0c109
java/client/src/org/openqa/selenium/support/ui/Sleeper.java
@@ -37,7 +37,7 @@ public interface Sleeper {
37
*/
38
@Deprecated
39
default void sleep(Duration duration) throws InterruptedException {
40
- sleep(java.time.Duration.of(duration.in(TimeUnit.MILLISECONDS), ChronoUnit.MICROS));
+ sleep(java.time.Duration.of(duration.in(TimeUnit.MILLISECONDS), ChronoUnit.MILLIS));
41
}
42
43
/**
0 commit comments