
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
822 Views
We can open Chrome browser in Selenium webdriver. We can launch Chrome by instantiating an object of the ChromeDriver class with the help of the below statement.WebDriver driver = new ChromeDriver();Next we have to download the chromedriver and configure it to our project by following the below step by step ... Read More

Debomita Bhattacharjee
450 Views
The geckodriver can be used in Selenium webdriver. For the Mozilla version above 47, the geckodriver is used due to the presence of Marionette, which is the driver for automation in Mozilla. We can then launch the Firefox browser by instantiating an object of FirefoxDriver class with the help of ... Read More

Debomita Bhattacharjee
827 Views
We can run Selenium webdriver test cases in Chrome browser. But before working with Chrome browser with Selenium we have to ensure that the Java JDK, any Java IDE like Eclipse and Selenium webdriver are configured in our system. Next we have to download the Chrome browser driver and configure ... Read More

Debomita Bhattacharjee
413 Views
We can install the Selenium latest version in our machine. It involves the below step by step processes −Java Installation.Eclipse IDE installation.Selenium Webdriver installation.Selenium is supported by multiple languages, here we shall discuss Selenium installation with Java.Navigate to the link −https://www.oracle.com/java/technologies/downloads/?er=221886 and then select JDK Download link. All the list of ... Read More

Debomita Bhattacharjee
571 Views
The differences between Selenium RC and Webdriver are listed below −FeaturesSelenium WebdriverSelenium RCArchitectureNot acquired from Javascript.Acquired from Javascript.ServerNo server is needed to begin test case execution.Server is needed to begin test case execution.Object OrientedIt is used widely for object oriented programming.It is moderately used for object oriented programming.BrowserIt can test ... Read More

Debomita Bhattacharjee
760 Views
We can get the href of elements found by partial link text with Selenium webdriver. First of all we need to identify the links with help of the find_elements_by_partial_link_text() method.Next to get hold of href of the links we have to use the get_attribute() method and then pass href as ... Read More

Debomita Bhattacharjee
11K+ Views
We can find an element in a sub-element with Selenium webdriver. First of all we need to identify the element with help of any of the locators like id, class, name, xpath or css. Then we have to identify the sub-element with the findElements(By.xpath()) method.We can identify the sub-element from ... Read More

Debomita Bhattacharjee
6K+ Views
We can scroll down the page till page end with Selenium webdriver.Selenium cannot directly scroll up or down with its methods. This is done with the Javascript Executor. DOM can interact with the elements with Javascript.Selenium runs the commands in Javascript with the execute_script() method. For scrolling till the page ... Read More

Debomita Bhattacharjee
5K+ Views
We can wait for the iframe to load completely with Selenium webdriver.First of all we need to identify the iframe with the help iframe id, name, number or webelement. Then we shall use the explicit wait concept in synchronization to wait for the iframe to load.We need to import org.openqa.selenium.support.ui.ExpectedConditions ... Read More

Debomita Bhattacharjee
5K+ Views
We can test if an element is focused with Selenium webdriver. This is determined with the help of the activeElement() method. First of all we need to identify the element with help of any of the locators like id, class, name, xpath or css.Syntaxdriver.switchTo().activeElement();Let us consider the below edit box ... Read More