Answer the question
In order to leave comments, you need to log in
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
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)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question