1
0
Fork 0
mirror of https://github.com/teampoltergeist/poltergeist.git synced 2022-11-09 12:05:00 -05:00

Merge pull request #777 from oieioi/typo-fix

Fix typo `noSuchWindowError` -> `NoSuchWindowError`
This commit is contained in:
Thomas Walpole 2016-06-20 07:39:53 -07:00 committed by GitHub
commit 387db1c412

View file

@ -164,7 +164,7 @@ module Capybara::Poltergeist
return locator if window_handles.include? locator
handle = command 'window_handle', locator
raise noSuchWindowError unless handle
raise NoSuchWindowError unless handle
return handle
end