Hi Sarita,
Selenium sessions map to a user interaction/browser session. You can think of a Selenium session as the flow/context of a user interacting with the web application. In particular:
- You can run tests/workflow in parallel by having multiple Selenium sessions running concurrently
- The session provide some "context" to most Selenium commands
Cheers,
- Philippe