Esempio n. 1
0
        public void SelectFromSuggestionList()
        {
            textBox.Enter("h");
            SuggestionList suggestionList = textBox.SuggestionList;

            suggestionList.Select("hello");
            Assert.AreEqual("hello", textBox.Text);
        }
Esempio n. 2
0
        void SelectFromSuggestionList()
        {
            var textBox = MainWindow.Get <WinFormTextBox>("TextBox");

            textBox.Enter("h");
            SuggestionList suggestionList = textBox.SuggestionList;

            suggestionList.Select("hello");
            Assert.Equal("hello", textBox.Text);
        }