FirefoxDriver driver = initDriver();
System.out.println("IP ADDRESS: " + getCurrentIp(driver));
System.out.println("Opening TR Page...");
driver.get(TR_MAIN_PAGE);
driver.findElement(By.className("selectBox-label")).click();
WebElement dropdownMenu = driver.findElement(By.className("selectBox-dropdown-menu"));
List<WebElement> sectionLis = dropdownMenu.findElements(By.tagName("li"));
System.out.println("Section count: " + sectionLis.size());
for (int i = 0; i < sectionLis.size(); i++) {