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

Fix typo noSuchWindowError -> NoSuchWindowError

This commit is contained in:
oieioi 2016-06-20 12:56:29 +09:00
parent 6a66edb374
commit d14d5b161a

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