Golem.WebDriver.Element.SendKeys(string)

Here are the examples of the csharp api class Golem.WebDriver.Element.SendKeys(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: ProtoTest.Golem
Source File: Element.cs
public Element SetText(string value)
        {
            Clear();
            SendKeys(value);
            var element_value = this.GetAttribute("value");
            if (value != element_value)
            {
                Clear();
                Thread.Sleep(1000);
                SendKeys(value);
            }
            return this;
        }