assertTrue(selenium.getText("fn:firstItem_secondHeader").equals("Second tab"));
assertTrue(selenium.getText("fn:firstItem_firstContent").equals("Some text on the first tab"));
selenium.click("fn:firstItem_secondHeader");
assertTrue(selenium.getText("fn:firstItem_secondContent").equals("Some text on the second tab"));
selenium.click("fn:secondHeader");
assertTrue(selenium.isVisible("fn:secondItem"));
assertTrue(selenium.getText("fn:secondItem_firstHeader").equals("First tab"));
assertTrue(selenium.getText("fn:secondItem_secondHeader").equals("Second tab"));
assertTrue(selenium.getText("fn:secondItem_firstContent").equals("Some text on the first tab"));
selenium.click("fn:secondItem_secondHeader");