Kurt Russell
Kurt Russell

Reputation: 235

Watir WebDriver: undefined method 'alert'

I try to use Cucumber with help from watir webdriver with JavaScript.

If I tip: browser.alert.exists? I become: undefined method 'alert'

What must I doing, if I will this commands to use: http://watirwebdriver.com/javascript-dialogs/

Upvotes: 1

Views: 434

Answers (1)

Alister Scott
Alister Scott

Reputation: 3685

The alert API you refer to is only very new and in the latest version of watir-webdriver.

You should update to the latest watir-webdriver gem:

gem update watir-webdriver

Upvotes: 1

Related Questions