Пример #1
0
        /// <summary>
        /// Gets the placeholder of the main input box and compares it.
        /// </summary>
        /// <param name="expected"></param>
        /// <returns></returns>
        public bool DoesPlaceholderMatch(string expected)
        {
            string actual = MainTextBox.GetAttribute("placeholder");

            if (actual == expected)
            {
                return(true);
            }
            return(false);
        }