Navigation Menu

Skip to content

Commit

Permalink
Fix: Fixing typo errors (#7849) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
harsha509 authored and diemol committed Dec 6, 2019
1 parent 35f4627 commit 00de1c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/lib/actions.js
Expand Up @@ -255,7 +255,7 @@ class LegacyActionSequence {
}

/**
* Convenience function for performing a "drag and drop" manuever. The target
* Convenience function for performing a "drag and drop" maneuver. The target
* element may be moved to the location of another element, or by an offset (in
* pixels).
*
Expand Down
6 changes: 3 additions & 3 deletions javascript/node/selenium-webdriver/lib/capabilities.js
Expand Up @@ -91,7 +91,7 @@ const Platform = {
function Timeouts() {}

/**
* Defines when, in milliseconds, to interupt a script that is being
* Defines when, in milliseconds, to interrupt a script that is being
* {@linkplain ./webdriver.IWebDriver#executeScript evaluated}.
* @type {number}
*/
Expand All @@ -105,7 +105,7 @@ Timeouts.prototype.script;
Timeouts.prototype.pageLoad;

/**
* The maximimum amount of time, in milliseconds, to spend attempting to
* The maximum amount of time, in milliseconds, to spend attempting to
* {@linkplain ./webdriver.IWebDriver#findElement locate} an element on the
* current page.
* @type {number}
Expand Down Expand Up @@ -149,7 +149,7 @@ const UserPromptHandler = {
const Capability = {

/**
* Indicates whether a WebDriver session implicity trusts otherwise untrusted
* Indicates whether a WebDriver session implicitly trusts otherwise untrusted
* and self-signed TLS certificates during navigation.
*/
ACCEPT_INSECURE_TLS_CERTS: 'acceptInsecureCerts',
Expand Down
10 changes: 5 additions & 5 deletions javascript/node/selenium-webdriver/lib/input.js
Expand Up @@ -478,7 +478,7 @@ Pointer.Type = {
*
* The length of each action tick is however long it takes the remote end to
* execute the actions for every device in that tick. Most actions are
* "instaneous", however, {@linkplain #pause pause} and
* "instantaneous", however, {@linkplain #pause pause} and
* {@linkplain #move pointer move} actions allow you to specify a duration for
* how long that action should take. The remote end will always wait for all
* actions within a tick to finish before starting the next tick, so a device
Expand All @@ -495,7 +495,7 @@ Pointer.Type = {
*
* This implicit waiting also applies to pauses. In the table below, even though
* the keyboard only defines a pause of 100 ms, the remote end will wait an
* additional 200 ms for the mouse mmove to finish before moving to Tick 2.
* additional 200 ms for the mouse move to finish before moving to Tick 2.
*
* | Device | Tick 1 | Tick 2 |
* | -------- | --------------------- | -------------- |
Expand Down Expand Up @@ -554,13 +554,13 @@ Pointer.Type = {
* when translating actions to the legacy protocol.
*
* 6. For W3C actions, move offsets relative to a
* {@linkplain ./webdriver.WebElement WebElement} are interpretted relative
* {@linkplain ./webdriver.WebElement WebElement} are interpreted relative
* to the center of an element's _first_ [client rect] in the viewport. For
* legacy actions, element offsets are relative to the top-left corner of
* the element's [bounding client rect]. When translating actions to the
* legacy protocol in bridge mode, an extra command must be inserted to
* translate move offsets from one frame of reference to the other. This
* extra command conributes to the overall latency issue outlined in
* extra command contributes to the overall latency issue outlined in
* point 1.
*
* [client rect]: https://developer.mozilla.org/en-US/docs/Web/API/Element/getClientRects
Expand Down Expand Up @@ -692,7 +692,7 @@ class Actions {
* If no devices are specified, a pause action will be created (using the same
* duration) for every device.
*
* When device synchroniation is enabled (the default for new {@link Actions}
* When device synchronization is enabled (the default for new {@link Actions}
* objects), there is no need to specify devices as pausing one automatically
* pauses the others for the same duration. In other words, the following are
* all equivalent:
Expand Down

0 comments on commit 00de1c6

Please sign in to comment.