Selenium’s Python Module is built to perform automated testing with Python. ActionChains are a way to automate low-level interactions such as mouse movements, mouse button actions, keypress, and context menu interactions. This is useful for doing more complex actions like hover over and drag and drop. Action chain methods are used by advanced scripts where we need to drag an element, click an element, double click, etc.
This article revolves around send_keys
method on Action Chains in Python Selenium. send_keys method is used to send keys to current focused element.
Syntax –
send_keys(*keys_to_send)
Args –keys_to_send
: The keys to send. Modifier keys constants can be found in the ‘Keys’ class.
Example –
< input type = "text" name = "passwd" id = "passwd-id" / >
|
To find an element one needs to use one of the locating strategies, For example,
element = driver.find_element_by_id( "passwd-id" )
element = driver.find_element_by_name( "passwd" )
|
Now one can use send_keys method as an Action chain as below –
action.click(on_element=element)
action.send_keys("Arrays")
How to use send_keys Action Chain method in Selenium Python ?
To demonstrate, send_keys
method of Action Chains in Selenium Python. Let’ s visit https://www.geeksforgeeks.org/ and operate on an element.
Program –
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
driver = webdriver.Firefox()
element = driver.find_element_by_class_name( "gsc-input" )
action = ActionChains(driver)
action.click(on_element = element)
action.send_keys( "Arrays" )
action.perform()
|
Output –

Last Updated :
15 May, 2020
Like Article
Save Article
Vote for difficulty
Current difficulty :
Basic