- Регистрация
- 03.10.2018
- Сообщения
- 1 136
- Благодарностей
- 196
- Баллы
- 63
Всем привет
Как получить текст, который содержится в элементах?
так? или как правильно?
Как получить текст, который содержится в элементах?
C#:
IReadOnlyCollection<IAndroidElementApi> textElements = droid2.FindElementsByClassName("android.widget.TextView");
List<string> textList = new List<string>();
foreach(var elm in textElements)
{
string txt = elm.GetAttribute("text");
textList.Add(text);
}