What is POM in Selenium?
It’s a pattern for software testing in which an actual application is simulated, or mocked up. The idea is that you create a page of your application, then make it possible to interact with that page from your test code. This lets you write tests that are more stable, more flexible, and much easier to maintain than if you were writing tests against the real application.
Learn more: Page Object Model (POM) - GeeksforGeeks