예제 #1
0
 /// <summary>
 /// Clicks the Kendo input element to view the list box.
 /// </summary>
 public void ExpandListBox()
 {
     InputElement.Click();
     Thread.Sleep(1000);
 }
예제 #2
0
		void defaultButton(InputElement textBox, InputElement button)
		{
			DomEvent.AddHandler(textBox, "keyup", delegate(DomEvent e)
			{
				if (e.KeyCode == 13)
				{
					if (AsyncInProgress)
						return;

					button.Click();

				}
			});
		}
예제 #3
0
 public void ChooseFile()
 {
     Node.Click();
 }