selector
// Find all li elements within the ul
var listItems = ulElement.FindElements(By.TagName("li"));
// Iterate through the list items to find the correct one
foreach (var listItem in listItems)
{
if (listItem.I == "Апрель") // Replace with your criteria for choosing the correct li
{
listItem.Click(); // Click the correct li item
break; // Exit the loop once the correct item is clicked
}
}
Должны быть месяцы, а почему то выдает непонятные element id, Кто умеет парсить?
Элемент Id он должен быть
Обсуждают сегодня