Movatterモバイル変換


[0]ホーム

URL:


Open In App
Next Article:
execute_script 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 aroundexecute_async_script driver method in Selenium.execute_async_script method asynchronously Executes JavaScript in the current window/frame. This is a big feature of selenium, because javascript can do everything with a website from hitting APIs to playing with live code.Syntax -
execute_async_script(script, *args)
Args -
  • script: The JavaScript to execute.
  • *args: Any applicable arguments for your JavaScript.
Example -Now one can use execute_async_script method as a driver method as below -
diver.get("https://www.geeksforgeeks.org/")driver.execute_async_script("alert("alert via selenium")")

How to use execute_async_script driver method in Selenium Python ?

To demonstrate,execute_async_script 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/")# write scriptscript="alert('Alert via selenium')"# generate a alert via javascriptdriver.execute_async_script(script)
Output -Browser generates alert as verified below -javascript-method-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