winforms - Selecting new value from form using watin -
i have watin.core.teaxfield date = x.textfield(find.byid("whatever")) date.value=2014-06-06"....this set value question how can select value label or combo box is windows form .thanks
for combobox, can select value using such as:
selectlist selectlist = browser.selectlist(find.byid("some_id")); selectlist.option("some_option").select();
to label value:
string value = browser.label(find.byid("some_id").text;
Comments
Post a Comment