Skip to content

Commit

Permalink
debugging the chrome build
Browse files Browse the repository at this point in the history
  • Loading branch information
jarib committed Oct 18, 2013
1 parent 4aeba68 commit 9083112
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .travis.yml
@@ -1,23 +1,15 @@
jdk:
- openjdk6
rvm:
- 1.9.3
- 2.0.0
- jruby
- rbx-19mode
- ruby-head
notifications:
recipients:
- jari.bakken@gmail.com
irc: "irc.freenode.net#selenium"
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
4 changes: 4 additions & 0 deletions rb/spec/integration/selenium/webdriver/options_spec.rb
Expand Up @@ -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
Expand All @@ -15,13 +17,15 @@

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")
end

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
Expand Down

0 comments on commit 9083112

Please sign in to comment.