SeleniumHQ / selenium-google-code-issue-archive

Archive, please see main selenium repo
https://github.com/seleniumhq/selenium
345 stars 195 forks source link

Incorrect documentation in Keys class #4611

Closed lukeis closed 8 years ago

lukeis commented 8 years ago

Originally reported on Google Code with ID 4611

Keys.F11 in OpenQA.Selenium.Keys (in the WebDriver .NET project) has incorrect documentation
for the Keys.F11 property.

Code:

        /// <summary>
        /// Represents the function key F12.
        /// </summary>
        public static readonly string F11 = Convert.ToString(Convert.ToChar(0xE03B,
CultureInfo.InvariantCulture), CultureInfo.InvariantCulture);

Should be:

        /// <summary>
        /// Represents the function key F11.
        /// </summary>
        public static readonly string F11 = Convert.ToString(Convert.ToChar(0xE03B,
CultureInfo.InvariantCulture), CultureInfo.InvariantCulture);

Reported by arran.huxtable on 2012-09-25 08:56:53

lukeis commented 8 years ago
This issue was closed by revision r17868.

Reported by jmleyba on 2012-09-26 16:52:06

lukeis commented 8 years ago

Reported by luke.semerau on 2015-09-17 18:16:13