adspace
What is the difference between find elements () and find element ()?
Answer Posted / Amar Deep Nayak
`findElements()` returns a list of all elements that match the given criteria, while `findElement()` returns a single WebElement that matches the first occurrence of the given criteria. In case no elements are found by `findElement()`, an exception will be thrown.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers