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 d3eaab4 commit ce5bd0fCopy full SHA for ce5bd0f
seleniumbase/common/decorators.py
@@ -53,7 +53,9 @@ def my_method():
53
name = description
54
info = c1 + "<info>" + cr
55
# Print times with a statistically significant number of decimal places
56
- if run_time < 0.0001:
+ if run_time < 0.00001:
57
+ print("%s - {%s} ran for %.8f seconds." % (info, name, run_time))
58
+ elif run_time < 0.0001:
59
print("%s - {%s} ran for %.7f seconds." % (info, name, run_time))
60
elif run_time < 0.001:
61
print("%s - {%s} ran for %.6f seconds." % (info, name, run_time))
0 commit comments