我使用Winium,使用Selenium Remote和C#,我需要在数组中存储listbox的内容:
App = Inetcpl.cpl (internet settings), //list of sites in Trusted sites
但不起作用,有什么建议吗?
谢谢!
我的代码:
IList<IWebElement> options = driver.FindElements(By.Name(Sites:));
foreach (IWebElement option in options)
{
Console.WriteLine(option.Text);
}