I want to click on multiple links with the same class using PHPUnit's extension for Selenium2. I am trying to select multiple elements using:
$elements = $this->byClassName('link_class');
However this only selects a single element. How do I select all of my elements and iterate through them?