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 aead1f8 commit 4c5b29fCopy full SHA for 4c5b29f
java/client/src/com/thoughtworks/selenium/webdriven/SeleneseCommand.java
@@ -51,6 +51,8 @@ public void setDefaultTimeout(long defaultTimeout) {
51
}
52
53
protected long getTimeout(String timeout) {
54
+ // Of course, a non-breaking space doesn't count as whitespace.
55
+ timeout = timeout.replace('\u00A0',' ').trim();
56
return "".equals(timeout) ? defaultTimeout : Long.valueOf(timeout);
57
58
0 commit comments