or
{
// Set 'input_Text_Inputfelt' text to 'renamed.png'
HtmlInputText input_Text_Inputfelt = Pages.Dynamicweb_7__Dynamicweb_administration_0.Frame_right.input_Text_Inputfelt;
input_Text_Inputfelt.Wait.ForExists(10000);
input_Text_Inputfelt.Text = "renamed.png";
}
Is there a way to conclude this code with a 'return', 'submit' or something?
Kind regards
Christian
Hi,
I have on page RadDatePicker
| <tel:RadDatePicker ID="dpStartDate" runat="server" DateInput-ID="diStartDate"> |
| <Calendar ID="c1" runat="server" FocusedDate="2006-10-30" /> |
| <DateInput CatalogIconImageUrl="" Description="" DisplayPromptChar="_" PromptChar=" " |
| Title="" TitleIconImageUrl="" TitleUrl="" /> |
| </tel:RadDatePicker> |
var SilverLightApp1 = ActiveBrowser.SilverlightApps()[0];
var txtbox500 = SilverLightApp1.FindName("txtbox500");
txtbox500.User.TypeText("Sample Text", 10);
Thanks!