Esempio n. 1
0
        /// <summary>
        /// Get the value of the text-box
        /// </summary>
        /// <param name="controlId">Id of the text-box button</param>
        /// <param name="useSitemapId">By default element id will be picked from sitemaps, false to use the control Id directly</param>
        /// <param name="sourceType">Default mentions the element is of Id type</param>
        /// <returns></returns>
        public string GetText(string controlId, bool useSitemapId = true, FindType sourceType = FindType.ById)
        {
            string locator = useSitemapId == true?_siteMapData.GetLocator(controlId, out sourceType) : controlId;

            return(_client.GetText(locator, sourceType));
        }