Collections:
Retrieve Web Form Elements with WebDriver in Python
How to Retrieve Web Page Form Elements with Selenium WebDriver in Python?
✍: FYIcenter.com
If a Web page is part of a Web application, it will most likely have an HTML form
to allow users to enter and process data.
This tutorial shows you how to Retrieve a Web page form and its elements with Selenium WebDriver.
Several methods from Selenium WebDriver classes will be used:
1. Enter the following program, FormElement.py:
C:\fyicenter> type FormElement.py
# FormElement.py
# Copyright (c) FYIcenter.com
from selenium.webdriver import Chrome
driver = Chrome()
driver.get("http://sqa.fyicenter.com")
# get the first "form" element in the page
form = driver.find_element_by_tag_name("form")
action = form.get_attribute("action")
method = form.get_attribute("method")
print("Test Case - Review FORM elements:")
print(" <form action="+action+" method="+method+">")
# get all "input" elements in the "form"
list = form.find_elements_by_tag_name("input")
for input in list:
type = input.get_attribute("type")
name = input.get_attribute("name")
value = input.get_attribute("value")
size = input.get_attribute("size")
src = input.get_attribute("src")
alt = input.get_attribute("alt")
print(" input type="+type+" name="+name+" value="+value
+" size="+size+" src="/+src+" alt="+alt+">")
print(" </form>")
driver.quit()
2. Run it.
C:\fyicenter>python FormElement.py
DevTools listening on ws://127.0.0.1:58904/devtools/browser/...
Test Case - Review FORM elements:
<form action=http://sqa.fyicenter.com/index.php method=get>
<input type=text name=Q value= size=28 src= alt=>
<input type=image name= value= size=20
src=http://sqa.fyicenter.com/_search.png alt=Submit>
</form>
As you can see, we are able to retrieve the FORM element and its INPUT sub-elements without any problem.
⇒ Submit Web Form with WebDriver in Python
⇐ Retrieve Web Page Title with WebDriver in Python
2019-10-27, ∼2142🔥, 0💬
Popular Posts:
How to see my IP address Host Name? To help you to see your IP Address Host Name, FYIcenter.com has ...
How to validate domain name format? In order to help your programming or testing tasks, FYIcenter.co...
How to validate email address format? In order to help your programming or testing tasks, FYIcenter....
How to generate passwords? To help you to obtain some good passwords for testing purpose, FYIcenter....
How to generate test fractional numbers? Test fractional numbers are numbers with fractions that are...