D
D
Dmitry2020-03-03 16:18:39
selenium
Dmitry, 2020-03-03 16:18:39

How to work with elements of the same type (Selenium Webdriver)?

Conditional task: there are 100 inputs on the page that differ only in id. It is required to enter text into each of them and press a button.

Now I use the following approach:
1) there is a separate locator for each input
2) there is a separate function for each locator, with identical code, which processes and returns only different locators
3) filling each input - a separate case

The question is, is such an implementation correct? It makes more sense to make one common function that will accept the required locator. But in this case, the locator will have to be transferred from the test case itself. Please explain how to do it right.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
SvinkaBacilka, 2020-03-03
@dima2308

Try searching by the tag name 'input', then getting the id attribute from the name and already passing it to the function.
You can get the attribute like this:

web_elements = driver.find_elements_by_tag_name('input')
for element in web_elements:
    element_id = element.get_attribute('id')
    your_function(element_id)

A
Andrew, 2020-03-03
@freiman

It depends.
Are inputs part of one big form?
Can they be filled in any arbitrary order, or are they filled only all at once?
If this is one large form and is filled out completely, then you can iterate through one method

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question