diff --git a/.travis.yml b/.travis.yml index d950b85..8f0ee31 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,7 @@ jdk: - openjdk6 rvm: - - 1.9.3 - 2.0.0 - - jruby - - rbx-19mode - - ruby-head notifications: recipients: - jari.bakken@gmail.com @@ -13,11 +9,7 @@ notifications: before_script: - ./install.sh env: - - localhost=travis DISPLAY=:99 WD_SPEC_DRIVER=unit - - localhost=travis DISPLAY=:99 WD_SPEC_DRIVER=firefox - localhost=travis DISPLAY=:99 WD_SPEC_DRIVER=chrome chrome_server=./chrome-linux/chromedriver chrome_binary=./chrome-linux/chrome - - localhost=travis DISPLAY=:99 WD_SPEC_DRIVER=remote - - localhost=travis DISPLAY=:99 WD_SPEC_DRIVER=rc_client SELENIUM_RC_TIMEOUT=120 matrix: allow_failures: - rvm: ruby-head \ No newline at end of file diff --git a/rb/spec/integration/selenium/webdriver/options_spec.rb b/rb/spec/integration/selenium/webdriver/options_spec.rb index 5f98c49..4335683 100644 --- a/rb/spec/integration/selenium/webdriver/options_spec.rb +++ b/rb/spec/integration/selenium/webdriver/options_spec.rb @@ -4,6 +4,8 @@ describe "cookie management" do it "should get all" do driver.navigate.to url_for("xhtmlTest.html") + p current_url: driver.current_url + driver.manage.add_cookie :name => "foo", :value => "bar" cookies = driver.manage.all_cookies @@ -15,6 +17,7 @@ it "should delete one" do driver.navigate.to url_for("xhtmlTest.html") + p current_url: driver.current_url driver.manage.add_cookie :name => "foo", :value => "bar" driver.manage.delete_cookie("foo") @@ -22,6 +25,7 @@ it "should delete all" do driver.navigate.to url_for("xhtmlTest.html") + p current_url: driver.current_url driver.manage.add_cookie :name => "foo", :value => "bar" driver.manage.delete_all_cookies