showing results for - "find element vs find elements"
Hanna
20 Aug 2018
1Differences between findElement and findElementS method?
2    --> findElement():
3     
4      -It does returns SINGLE web element.
5      - Return type: WebElement
6      - If it cannot find a web element, it throw - NoSuchElementException
7          
8   
9   --> findElements():
10      - Returns a List of WebElements
11      - Return type: List<WebElement>
12      - If it cannot find a web element, - It will not throw any exception.
13      - It will simply return EMPTY LIST.
14
Emelie
25 Nov 2016
1Differences between findElement and findElementS method?
2    --> findElement():
3     
4      -It does returns SINGLE web element.
5      - Return type: WebElement
6      - If it cannot find a web element, it throw - NoSuchElementException
7          
8   
9   --> findElements():
10      - Returns a List of WebElements
11      - Return type: List<WebElement>