Здравствуйте. Нужно в выпадающем списке выбрать определенный элемент. На данном этапе трудность в том, что список при клике на него не реагирует. Подскажите новичку, в какую сторону "копать".
WebDriver, Selenium 3.141.59, Google Chrome
Сайт https://cloud.google...ucts/calculator В пункте Operating System нужно выбрать "Free....."
driver.switchTo().frame(0);
driver.switchTo().frame("myFrame");
WebElement operatingSystem = new WebDriverWait(driver, 10)
.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//md-select-value/span/div[contains(text(),'Free')]/../../..")));
operatingSystem.click();
WebElement checkFree = new WebDriverWait(driver, 10)
.until(ExpectedConditions.elementToBeClickable(By.xpath("//md-option/div[contains(text(),'Free')]/..")));
checkFree.click();


