
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
417 Views
There are numerous assertions available to test relational comparisons in Selenium. They are listed below −assertGreater – This assertion has two parameters. A comparison is done between the first and second parameter. In case the first parameter is greater than the second one, the test case is considered a pass; ... Read More

Debomita Bhattacharjee
7K+ Views
There are assertions in Selenium which are verification or checkpoints for the test case. In the absence of an assertion, there is no option of determining if a test case has failed or not.Sometimes, we may use the conditional statements like if – else and so on and then print ... Read More

Debomita Bhattacharjee
4K+ Views
We can perform the action of pressing ctrl+c keys in Selenium. There are multiple special Keys available that enable the act of pressing keys via a keyboard like ctrl+c, ctrl+v, ctrl+f and many more. These special Keys are a part of selenium.webdriver.common.keys.Keys class.key_down() – This method performs the action sending ... Read More

Debomita Bhattacharjee
3K+ Views
We can perform the action of pressing ctrl+f keys in Selenium. There are multiple special Keys available that enable the act of pressing keys via a keyboard like ctrl+c, ctrl+v, ctrl+f and many more. These special Keys are a part of selenium.webdriver.common.keys.Keys class.key_up() – This method releases a modifier key. ... Read More

Debomita Bhattacharjee
1K+ Views
We can click() method in Action Chain class in Selenium. These classes are generally used for automating interactions like context menu click, mouse button actions, key press and mouse movements.These types of actions are mainly common in complex scenarios like drag and drop and hovering over an element on the ... Read More

Debomita Bhattacharjee
947 Views
We can perform mouse release from an element in Selenium with the help of Action Chains class. These classes are generally used for automating interactions like context menu click, mouse button actions, key press and mouse movements.These types of actions are mainly common in complex scenarios like drag and drop ... Read More

Debomita Bhattacharjee
2K+ Views
We can input letters in capital letters in an edit box in Selenium with the help of Action Chains class. These classes are generally used for automating interactions like context menu click, mouse button actions, key press and mouse movements.These types of actions are mainly common in complex scenarios like ... Read More

Debomita Bhattacharjee
4K+ Views
We can perform mouse movement to an element in Selenium with the help of Action Chains class. These classes are generally used for automating interactions like context menu click, mouse button actions, key press and mouse movements.These types of actions are mainly common in complex scenarios like drag and drop ... Read More

Debomita Bhattacharjee
6K+ Views
We can perform right click on an element in Selenium with the help of Action Chains class. These classes are generally used for automating interactions like context menu click, mouse button actions, key press and mouse movements.These types of actions are mainly common in complex scenarios like drag and drop ... Read More

Debomita Bhattacharjee
7K+ Views
We can perform double click on an element in Selenium with the help of Action Chains class. These classes are generally used for automating interactions like context menu click, mouse button actions, key press and mouse movements.These types of actions are mainly common in complex scenarios like drag and drop ... Read More