Debomita Bhattacharjee has Published 863 Articles

Name the different locators used in Selenium with python.

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 07:21:40

175 Views

The different locators used in Selenium with python are listed below.Id - The element is identified with its id attribute. NoSuchElementException raised if element with matching id is not available.Syntax −driver.find_element_by_id("id")Name - The element is identified with its name attribute. NoSuchElementException raised if element with matching name is not available.Syntax ... Read More

How to write a text file in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 07:19:15

2K+ Views

We can write a text file in Selenium with python by first creating a txt file and having a content on it.First of all, we need to open the file in write mode and mention the path of the location of the text file as an argument. There are multiple ... Read More

What are the differences between readline() and readlines() in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 07:15:42

11K+ Views

The differences between readline() and readlines() methods are listed below.readlines()This method will read the entire content of the file at a time.This method reads all the file content and stores it in the list.This method reads up to the end of the line with readline () and returns a list.readline()This ... Read More

How to read a text file in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 07:13:28

3K+ Views

We can read a text file in Selenium with python by first creating a txt file and having a content on it.First of all, we need to open the file and mention the path of the location of the text file as an argument. There are multiple reading methods to ... Read More

How to close a browser session in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 07:11:39

1K+ Views

We can close a browser session in Selenium by the following ways −Using the close() method.Using the quit() method.Both these methods close the browser, but close() the browser in focus and quit() ends the driver session.ExampleCode Implementation with close().from selenium import webdriver #browser exposes an executable file #Through Selenium test ... Read More

How to perform back and refresh in a browser in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 07:09:15

635 Views

We can perform back and refresh in the browser in Selenium.For performing back operation in the browser, the back method is to be used.For refreshing the browser, refresh method is to be used.Both these methods can be used for testing browser navigations and reloading of web pages.ExampleCode Implementationfrom selenium import ... Read More

How to get the title and URL of the page in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 07:02:22

2K+ Views

We can get the title and URL of the page in Selenium.For getting the title of the browser, the title method is to be used.For getting the URL of the page, the current_url method is to be used.Both these methods can be used for testing if we are navigated to ... Read More

How to maximize and minimize browsers in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 06:58:42

3K+ Views

We can maximize and minimize the browser while we are testing an application in Selenium.For maximizing the browser, maximize() method is to be used.For minimizing the browser, minimize() method is to be used.Both these methods can be used simultaneously in the same program.ExampleCode Implementationfrom selenium import webdriver #browser exposes an ... Read More

How to invoke the IE browser in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 06:57:13

1K+ Views

We can invoke any browsers with the help of the webdriver package. From this package we get access to numerous classes. Next we have to import the selenium.webdriver package. Then we shall be exposed to all the browsers belonging to that package.For invoking the internet explorer browser, we have to ... Read More

How to invoke the Firefox browser in Selenium with python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jul-2020 06:55:40

3K+ Views

We can invoke any browsers with the help of the webdriver package. From this package we get access to numerous classes. Next we have to import the selenium.webdriver package. Then we shall be exposed to all the browsers belonging to that package.For invoking the Firefox browser, we have to select ... Read More

Advertisements