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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ you can configure it use Bazel artifacts:
1. Open `rb/` as a main project directory.
2. Run `bundle exec rake update` as necessary to create up-to-date artifacts. If this does not work, run `./go rb:update` from the `selenium` (parent) directory.
3. In <kbd>Settings / Languages & Frameworks / Ruby SDK and Gems</kbd> add new <kbd>Interpreter</kbd> pointing to `../bazel-selenium/external/rules_ruby_dist/dist/bin/ruby`.
4. You should now be able to run and debug any spec. It uses Chrome by default, but you can alter it using environment variables secified in [Ruby Testing](#ruby-2) section below.
4. You should now be able to run and debug any spec. It uses Chrome by default, but you can alter it using environment variables specified in [Ruby Testing](#ruby-2) section below.

### Rust

Expand Down
2 changes: 1 addition & 1 deletion py/CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ Selenium 4.0 Alpha 7
* Add debugpy to requirements
* Fix uploading multiple files on remote driver (#7472) (#8734)
* Correct docstring around find_element and find_elements. Fixes #8806
* Add the ability to ignore local proxys that are available
* Add the ability to ignore local proxies that are available
* add script pinning to python bindings
* Deprecate desired_capabilities property in favour of capabilities property
* Update tests to use requirements file
Expand Down
2 changes: 1 addition & 1 deletion py/docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Contributing to Python docs

First it is recommended that you read the main `CONTRIBUTING.md <https://github.com/SeleniumHQ/selenium/blob/trunk/CONTRIBUTING.md>`_.

Some steps for contibuting to the Python documentation ...
Some steps for contributing to the Python documentation ...

- Check out changes locally using instructions above.
- Try to resolve any warnings/errors.
Expand Down
6 changes: 3 additions & 3 deletions py/selenium/webdriver/common/virtual_authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(
- rp_id (str): Relying party identifier.
- user_handle (bytes): userHandle associated to the credential. Must be Base64 encoded string. Can be None.
- private_key (bytes): Base64 encoded PKCS#8 private key.
- sign_count (int): intital value for a signature counter.
- sign_count (int): initial value for a signature counter.
"""
self._id = credential_id
self._is_resident_credential = is_resident_credential
Expand Down Expand Up @@ -137,7 +137,7 @@ def create_non_resident_credential(cls, id: bytes, rp_id: str, private_key: byte
- id (bytes): Unique base64 encoded string.
- rp_id (str): Relying party identifier.
- private_key (bytes): Base64 encoded PKCS
- sign_count (int): intital value for a signature counter.
- sign_count (int): initial value for a signature counter.

:Returns:
- Credential: A non-resident credential.
Expand All @@ -155,7 +155,7 @@ def create_resident_credential(
- rp_id (str): Relying party identifier.
- user_handle (bytes): userHandle associated to the credential. Must be Base64 encoded string.
- private_key (bytes): Base64 encoded PKCS
- sign_count (int): intital value for a signature counter.
- sign_count (int): initial value for a signature counter.

:returns:
- Credential: A resident credential.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def test_get_connection_manager_with_auth_https_proxy(mock_proxy_auth_settings):
"*",
".localhost",
"localhost:80",
"locahost",
"localhost",
"LOCALHOST",
"LOCALHOST:80",
"http://localhost",
Expand Down