-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support paths using 2-byte characters
The following error occurs when the path contains 2-byte characters. ``` URI::InvalidURIError: URI must be ascii only "http://localhost:4567/\u732B" ``` Referring to the Capybara implementation, use Addressable instead of URI to support 2-byte characters. refs: https://github.com/teamcapybara/capybara/blob/3.40.0/lib/capybara/session.rb#L261
- Loading branch information
Showing
3 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters