Fix unexpected quotes closing

This commit is contained in:
Helio S. Junior 2019-09-12 13:36:31 -03:00 committed by GitHub
parent c353827bc4
commit f4070993d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ find('#x').fill_in('Street', with: 'Hello')
### Scripting ### Scripting
```ruby ```ruby
execute_script('$("input").trigger('change')') execute_script('$("input").trigger("change")')
evaluate_script('window.ga') evaluate_script('window.ga')
``` ```