Course Content
Selenium Python First Script
Selenium Python First Script
0/2
HTML Form elements
HTML Form elements
0/1
Handle HTML Frames
Handle HTML Frames
0/2
Handling Dropdown Lists
Handling Dropdown Lists
0/2
Selenium Action class
Selenium Action class
0/1
Selenium Python for Beginners [ 2024 ]
About Lesson

Selenium IDE Logs

The Selenium IDE Log panel is located at the bottom of the Selenium IDE window. It shows the run-time messages during test execution.

Selenium IDE Logs can be classified into the following types:

  • DEBUG
  • INFO
  • WARN
  • ERROR

DEBUG: This shows the technical errors in the current test step. The debug option can be activated from the filter on the right side.

INFO: Information about the test step that is running currently.

WARN: Warning messages are shown when some errors occur.

ERROR: These messages are shown if the test fails in the execution.

This panel shows real-time test execution progress. Messages regarding errors, information, and test progress are displayed on this pane during the test case’s execution. This panel helps debug the test case and fix errors.

Selenium IDE Logs

Join the conversation