You can use the
FindAll method to identify all objects that match a locator rather that only identifying the first object that matches the locator.
Example
The following code example uses the
FindAll method to retrieve all hyperlinks of a Web page:
List<DomLink> links = browserWindow.<DomLink>findAll("//a");