You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 7, 2023. It is now read-only.
# Print the logs -- see the setup in `selenium_logging <selenium_logging>`.
51
+
print(
52
+
"\n"
53
+
"JavaScript console logs\n"
54
+
"======================="
55
+
)
56
+
logs=driver.get_log('browser')
57
+
forloginlogs:
58
+
print(f'{log["level"]}: {log["message"]}')
59
+
print("\n")
60
+
50
61
# Clear as much as possible, to present an almost-fresh instance of a browser for the next test. (Shutting down then starting up a browser is very slow.)
0 commit comments