Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion javascript/atoms/html5/database.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ bot.storage.database.executeSql = function(databaseName, query, args,
bot.storage.database.ResultSet = function(sqlResultSet) {

/**
* The database rows retuned from the SQL query.
* The database rows returned from the SQL query.
* @type {!Array.<*>}
*/
this.rows = [];
Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/html5/html5_browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ bot.html5.isSupported = function(api, opt_window) {
return false;
}
return goog.isDefAndNotNull(win.sessionStorage) &&
// To avoid browsers that only support this API partically
// To avoid browsers that only support this API partially
// like some versions of FF.
goog.isDefAndNotNull(win.sessionStorage.clear);

Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/html5/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ goog.require('bot.html5');
* We use bot.window() from bot.js instead to keep track of the window or frame
* is currently being used for command execution. The implementation is
* otherwise similar to the implementation in the Closure library
* (goog.storage.mechansim.HTML5LocalStorage).
* (goog.storage.mechanism.HTML5LocalStorage).
*
* @param {Window=} opt_window The window whose storage to access;
* defaults to the main window.
Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/test/html5/database_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
var onTxSuccess = onQueryResult;
var onTxFailure = success;

// WITH is errorneously used instead of WHERE
// WITH is erroneously used instead of WHERE
bot.storage.database.executeSql('testDB',
'SELECT * from docids WITH id = 1', [],
onQueryResult,
Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/test/opacity_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<!-- opacity test fixture -->
<p>
To determine opacity, it is not enough to simply read a property
value but some visual inpection is needed in order to verify if
value but some visual inspection is needed in order to verify if
the property is applied. This is specially true in IE which is
vey sensible to the syntax of the filter property.
</p>
Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/test/shown_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
function testTableRowCollapsedVisibility() {
expectedFailures.expectFailureFor(
(goog.userAgent.IE && !goog.userAgent.isDocumentModeOrHigher(8)),
'IE does not support visibilty:collapsed until IE8');
'IE does not support visibility:collapsed until IE8');
var elem = findElement({id: 'collapsed-row'});
expectedFailures.run(function() {
assertFalse(isShown(elem));
Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/test/text_table_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
function testTableWithCollapsedRows() {
expectedFailures.expectFailureFor(
(goog.userAgent.IE && !goog.userAgent.isDocumentModeOrHigher(8)),
'IE does not support visibilty:collapsed until IE8');
'IE does not support visibility:collapsed until IE8');
expectedFailures.run(function() {
assertTextIs(
goog.dom.getElement('collapsedTable'),
Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/test/type_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
*
* For IE versions prior to 8, this function resumes an async test case and
* executes the optionally-provided function after a fixed delay. For all
* other browsers, it just executes the function straightaway.
* other browsers, it just executes the function straight away.
*/
function yieldInIE7() {
return new goog.Promise(function (done) {
Expand Down
2 changes: 1 addition & 1 deletion javascript/atoms/test/window_size_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}

function verifySize(expectedSize) {
// TODO: Reenable when b/8869287 is fixed.
// TODO: Re-enable when b/8869287 is fixed.
if (bot.userAgent.IE_DOC_9) {
return;
}
Expand Down
6 changes: 3 additions & 3 deletions javascript/selenium-webdriver/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ to a remote Selenium server that supports Firefox 45.
### Changes

- Removed native support for Firefox 46 and older.
- The `SELENIUM_MARIONETTE` enviornment variable no longer has an effect.
- The `SELENIUM_MARIONETTE` environment variable no longer has an effect.
- `selenium-webdriver/firefox.Capability.MARIONETTE` is deprecated.
- `selenium-webdriver/firefox.Options#useGeckoDriver()` is deprecated and now
a no-op.
Expand Down Expand Up @@ -1001,7 +1001,7 @@ or newer.
- (**NOTICE**) The minimum supported version of Node is now 6.9.0 LTS
- Removed support for the SafariDriver browser extension. This has been replaced
by Apple's
safaridriver, which is included wtih Safari 10
safaridriver, which is included with Safari 10
(available on OS X El Capitan and macOS Sierra).

To use Safari 9 or older, users will have to use an older version of Selenium.
Expand All @@ -1018,7 +1018,7 @@ or newer.
- Extending the `selenium-webdriver/testing` module to support tests defined
using generator
functions.
- The promise manager can be disabled by setting an enviornment variable:
- The promise manager can be disabled by setting an environment variable:
`SELENIUM_PROMISE_MANAGER=0`. This is part of a larger plan to remove the
promise manager, as
documented at
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-webdriver/bidi/networkTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class Cookie {
}
}

// No tests written for FetchTimingInfo. Must be updated after browsers implment it and corresponding WPT test are written.
// No tests written for FetchTimingInfo. Must be updated after browsers implement it and corresponding WPT test are written.
/**
* Represents the time of each part of the request.
* Described in https://w3c.github.io/webdriver-bidi/#type-network-FetchTimingInfo.
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-webdriver/bidi/protocolType.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const RemoteType = {
}

/**
* Represents a speacial number type.
* Represents a special number type.
* @enum
* Described in https://w3c.github.io/webdriver-bidi/#type-script-PrimitiveProtocolValue.
*/
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-webdriver/example/logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

/**
* @fileoverview Demonstrates how to use WebDriver's logging sysem.
* @fileoverview Demonstrates how to use WebDriver's logging system.
*/

'use strict'
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-webdriver/io/exec.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Options {
this.env

/**
* IO conifguration for the spawned server child process. If unspecified,
* IO configuration for the spawned server child process. If unspecified,
* the child process' IO output will be ignored.
*
* @type {(string|!Array<string|number|!stream.Stream|null|undefined>|
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-webdriver/remote/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ DriverService.Builder = class {
/**
* Defines the environment to start the server under. This setting will be
* inherited by every browser session started by the server. By default, the
* server will inherit the enviroment of the current process.
* server will inherit the environment of the current process.
*
* @param {(Map<string, string>|Object<string, string>|null)} env The desired
* environment to use, or `null` if the server should inherit the
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-webdriver/test/fedcm/fedcm_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ suite(
})

describe('Federated Credential Management Test', function () {
it('credential mangement dialog should appear', async function () {
it('credential management dialog should appear', async function () {
await driver.get(Pages.fedcm)

let triggerButton = await driver.findElement(By.id('triggerButton'))
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-webdriver/testing/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ const URL_MAP = /** !WeakMap<!Environment, ?(string|remote.SeleniumServer)> */ n
*/
class Environment {
/**
* @param {!TargetBrowser} browser the browser targetted in this environment.
* @param {!TargetBrowser} browser the browser targeted in this environment.
* @param {?(string|remote.SeleniumServer)=} url remote URL of an existing
* Selenium server to test against.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
focusElement(input);
doType(['bar', webdriver.Key.SHIFT, 'baz'], state);

// IE<10 does not preserve cursor position after chaning focus.
// IE<10 does not preserve cursor position after changing focus.
if (bot.userAgent.IE_DOC_PRE10) {
assertEquals('BARbazfoo', input.value);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
}

return new goog.Promise(function(onDone) {
// WITH is errorneously used instead of WHERE
// WITH is erroneously used instead of WHERE
webdriver.atoms.inject.storage.database.executeSql(
'testDB',
'SELECT * from docids WITH id = 1',
Expand Down
10 changes: 5 additions & 5 deletions rb/CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -1855,7 +1855,7 @@ Safari:
* Replace 'libwebsocket' with 'websocket' gem. This should ensure
support with recent Safari.
Other:
* Fix Cygwin issue in PortProber/Firefox::Bianry (#4963)
* Fix Cygwin issue in PortProber/Firefox::Binary (#4963)

2.27.2 (2012-12-11)
===================
Expand Down Expand Up @@ -1945,7 +1945,7 @@ IE:
* Fix conflict with ActiveSupport's Object#load (#3819)
* IE:
* Default to standalone server executable, fall back to bundled DLLs.
* The 'nativeEvents' capabilitiy is exposed as :native_events in the Ruby client (mode still experimental).
* The 'nativeEvents' capability is exposed as :native_events in the Ruby client (mode still experimental).
* Firefox:
* Native events for Firefox 12.
* Native events retained for Firefox 3.x, 10 and 11.
Expand Down Expand Up @@ -2085,7 +2085,7 @@ IE:
===================

* Firefox:
* Now supports up to Firefox 11 (for syntesized events)
* Now supports up to Firefox 11 (for synthesized events)
* Implicit waits now change how long we wait for alerts. This
functionality will change in 2.16
* Fix scrolling issue (#2700)
Expand Down Expand Up @@ -2279,7 +2279,7 @@ IE:
2.1.0 (2011-07-18)
==================

* Various improvments to the IE driver (#2049, #1870)
* Various improvements to the IE driver (#2049, #1870)
* Atoms fixes (#1776, #1972).
* Synthetic mouse clicks do not propagate errors in onmouseover.

Expand Down Expand Up @@ -2429,7 +2429,7 @@ IE:
* Cookie expiration dates are now handled correctly (#730)
* Make Driver#bridge private, since this seems to be a common cause of confusion.
* Add {Element,Remote::Capabilities}#as_json for Rails 3 (http://jonathanjulian.com/2010/04/rails-to_json-or-as_json/)
* User can configure path to exectuables with {Firefox,Chrome}.path = "/some/path"
* User can configure path to executables with {Firefox,Chrome}.path = "/some/path"
* Added "chromium" as a possible name for the Chrome binary (#769)
* Correctly set the HTTP client timeout (#768)
* switch_to.window with block now handles exceptions and non-local returns.
Expand Down
2 changes: 1 addition & 1 deletion rb/lib/selenium/webdriver/common/wait.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Wait
# @param [Hash] opts Options for this instance
# @option opts [Numeric] :timeout (5) Seconds to wait before timing out.
# @option opts [Numeric] :interval (0.2) Seconds to sleep between polls.
# @option opts [String] :message Exception mesage if timed out.
# @option opts [String] :message Exception message if timed out.
# @option opts [Array, Exception] :ignore Exceptions to ignore while polling (default: Error::NoSuchElementError)
#

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module Http
end

%w[http_proxy HTTP_PROXY].each do |proxy_var|
it "honors the #{proxy_var} environment varable" do
it "honors the #{proxy_var} environment variable" do
with_env(proxy_var => 'http://proxy.org:8080') do
http = client.send :http

Expand Down
Loading