Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some typos #11035

Merged
merged 6 commits into from Sep 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions java/src/com/thoughtworks/selenium/Selenium.java
Expand Up @@ -538,7 +538,7 @@ public interface Selenium {
* </li>
* </ul>
* <p>
* If no option locator prefix is provided, the default behaviour is to match on
* If no option locator prefix is provided, the default behavior is to match on
* <strong>label</strong>.
* </p>
*
Expand Down Expand Up @@ -886,7 +886,7 @@ public interface Selenium {
* OK. This can be changed by prior execution of the chooseCancelOnNextConfirmation command.
* </p>
* <p>
* If an confirmation is generated but you do not consume it with getConfirmation, the next
* If a confirmation is generated but you do not consume it with getConfirmation, the next
* Selenium action will fail.
* </p>
* <p>
Expand Down Expand Up @@ -1124,7 +1124,7 @@ public interface Selenium {
/**
* Determines if the specified element is visible. An element can be rendered invisible by setting
* the CSS "visibility" property to "hidden", or the "display" property to "none", either for the
* element itself or one if its ancestors. This method will fail if the element is not present.
* element itself or one of its ancestors. This method will fail if the element is not present.
*
* @param locator an <a href="#locators">element locator</a>
* @return true if the specified element is visible, false otherwise
Expand Down Expand Up @@ -1169,7 +1169,7 @@ public interface Selenium {
* If a given field has no ID, it will appear as "" in this array.
* </p>
*
* @return the IDs of all field on the page
* @return the IDs of all fields on the page
*/
String[] getAllFields();

Expand Down Expand Up @@ -1705,7 +1705,7 @@ public interface Selenium {

/**
* Tells the Selenium server to add the specified key and value as a custom outgoing request
* header. This only works if the browser is configured to use the built in Selenium proxy.
* header. This only works if the browser is configured to use the built-in Selenium proxy.
*
* @param key the header name.
* @param value the header value.
Expand Down