我正在使用White在UIAutomation
中基于C#
库编写一些内容,我想知道如何获取元素的实际值?我的意思是textbox
的文字,label
的{{1}}和button
的数值? AFAIK中没有类似numeric up-down
的方法。怎么做到这一点?
答案 0 :(得分:0)
//for textbox
string your_needed_text1 = textBox1.text;
//for button
string your_needed_text2 = Button1.text;
答案 1 :(得分:0)
.Text
Button.Text
Label.Text
Textbox.Text
Etc Etc