Movatterモバイル変換


[0]ホーム

URL:


Open In App
Next Article:
fullscreen_window driver method - Selenium Python
Next article icon

Selenium’s Python Module is built to perform automated testing with Python. Selenium Python bindings provides a simple API to write functional/acceptance tests using Selenium WebDriver. To open a webpage using Selenium Python, checkout –Navigating links using get method – Selenium Python

Just being able to go to places isn’t terribly useful. What we’d really like to do is to interact with the pages, or, more specifically, the HTML elements within a page. There are multiple strategies to find an element using Selenium, checkout –Locating Strategies. Selenium WebDriver offers various useful methods to control the session, or in other words, browser. For example, adding a cookie, pressing back button, navigating among tabs, etc. 

This article revolves around forward driver method in Selenium. forward method is used to go one step forward in browser history.

Syntax - 

driver.forward()

Example - 
Now one can use forward method as a driver method as below - 

driver.get("https://www.geeksforgeeks.org/")driver.forward()

How to use forward driver method in Selenium Python ?

To demonstrate, forward method of WebDriver in Selenium Python. Let' s visit https://www.geeksforgeeks.org/ and operate on driver object.

Program - 

Python3
# import webdriverfromseleniumimportwebdriver# create webdriver objectdriver=webdriver.Firefox()# get geeksforgeeks.orgdriver.get("https://www.geeksforgeeks.org/")# get geeksforgeeks.orgdriver.get("https://www.practice.geeksforgeeks.org/")# one step forward in browser historydriver.forward()

Output - 
Browser goes forward in history as verified below - 
 

driver-methods-Selenium-Python


 


Improve
Article Tags :
Practice Tags :

Similar Reads

We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood ourCookie Policy &Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences

[8]ページ先頭

©2009-2025 Movatter.jp