What do you want to learn today?

Identifying elements in the page | Inspect attributes like id, class, name etc of an element

  In the Previous Tutorial, we wrote and run our very first Selenium script. In this tutorial, we will explore different ways of identifying elements in a web page. We’ll try to uniquely identify elements in the page using its one of the following attributes – id attribute name attribute class attribute What is a UI element in a web …

Read moreIdentifying elements in the page | Inspect attributes like id, class, name etc of an element

First selenium script | Writing and running code

In the Previous Tutorial, we covered the following – Created a new project ‘TeachMeSelenium’. Configured project to include Selenium dependencies In this tutorial, we’ll write a magical script that does the following operations – Navigate to https://cosmocode.io/automation-practice-first-selenium-script Print the page title Type “Teach me selenium” in the search box Click on the “Search” icon. And finally, close the …

Read moreFirst selenium script | Writing and running code