Merge pull request #1196 from hjJunior/patch-1

Fix unexpected quotes closing
This commit is contained in:
Rico Sta. Cruz 2019-12-24 22:10:50 +11:00 committed by GitHub
commit c9d091c264
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
```ruby
execute_script('$("input").trigger('change')')
execute_script('$("input").trigger("change")')
evaluate_script('window.ga')
```