
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Debomita Bhattacharjee has Published 863 Articles

Debomita Bhattacharjee
773 Views
We can obtain all the options in a dropdown in Selenium. All the options in the dropdown are stored in a list data structure. This is achieved with the help of options() which is a method under Select class.options() returns list of all options under the select tag. An empty ... Read More

Debomita Bhattacharjee
2K+ Views
We can deselect an option from a static dropdown with the help of methods under Select class.The deselect methods are listed below −deselect_by_value(args) − Deselection with the help of value of option.This method deselects the option based on the value of the specific option. NoSuchElementException thrown if there is no ... Read More

Debomita Bhattacharjee
5K+ Views
We can select a radio in a page in Selenium with the help of click() method. First of all we need to uniquely identify the checkbox with the help of any of the locators like css, xpath, id, class and so on.Next we have to use findElement() method to locate ... Read More

Debomita Bhattacharjee
7K+ Views
We can check a checkbox in a page in Selenium with the help of click() method. First of all we need to uniquely identify the checkbox with the help of any of the locators like css, xpath, id, class and so on.Next we have to use findElement() method to locate ... Read More

Debomita Bhattacharjee
289 Views
There are multiple methods available for handling static dropdowns in a page in Selenium. The static dropdowns are an integral part of a web page. This type of UI elements are mostly developed for birthday or age selection on a page.A dropdown is not an element alone. It is a ... Read More

Debomita Bhattacharjee
1K+ Views
We can count the total number of radio buttons in a page in Selenium with the help of find_elements method. While working on any radio buttons, we will always find an attribute type in the html code and its value should be radio.This characteristic is only applicable to radio buttons ... Read More

Debomita Bhattacharjee
2K+ Views
We can count the total number of checkboxes in a page in Selenium with the help of find_elements method. While working on any checkboxes, we will always find an attribute type in the html code and its value should be checkbox.This characteristic is only applicable to checkboxes on that particular ... Read More

Debomita Bhattacharjee
7K+ Views
There are multiple ways of submitting a form in Selenium. One of the methods is to directly use the click() method on the form submitting button. The next approach is to use the submit() method on the form page.Using the submit() method.This method shall simply submit the form after the ... Read More

Debomita Bhattacharjee
20K+ Views
We can enter text on any field in Selenium. After entering the text, we may need to remove or clear the text we entered in that field. This interaction with the web elements can be achieved with the help of clear() method.Thus a clear() method is used to clear or ... Read More

Debomita Bhattacharjee
1K+ Views
While working on an application and navigating to different pages or different sections of a page, we need to click on various UI elements on a page like a link or a button. All these are performed with the help of click() method.Thus a click() method typically works with elements ... Read More