Sha256: 91abfe760bfb38767a71187784c2b7b7361fa22de3316a8e16d6c35ad3a8bbc8
Contents?: true
Size: 1.7 KB
Versions: 3
Compression:
Stored size: 1.7 KB
Contents
require File.expand_path(__FILE__ + '/../../spec_helper') describe "Cookie Handling" do it "deletes all cookies" do page.open "http://localhost:4444/selenium-server/org/openqa/selenium/tests/html/path1/cookie1.html" page.delete_all_visible_cookies page.cookies.should be_empty page.open "http://localhost:4444/selenium-server/org/openqa/selenium/tests/html/path2/cookie2.html" page.delete_all_visible_cookies page.cookies.should be_empty end it "can set cookies" do page.open "http://localhost:4444/selenium-server/org/openqa/selenium/tests/html/path1/cookie1.html" page.create_cookie "addedCookieForPath1=new value1" page.create_cookie "addedCookieForPath2=new value2", :path => "/selenium-server/org/openqa/selenium/tests/html/path2/", :max_age => 60 page.open "http://localhost:4444/selenium-server/org/openqa/selenium/tests/html/path1/cookie1.html" page.cookies.should =~ /addedCookieForPath1=new value1/ page.cookie?("addedCookieForPath1").should be_true page.cookie("addedCookieForPath1").should eql("new value1") page.cookie?("testCookie").should be_false page.cookie?("addedCookieForPath2").should be_false page.delete_cookie "addedCookieForPath1", "/selenium-server/org/openqa/selenium/tests/html/path1/" page.cookies.should be_empty page.open "http://localhost:4444/selenium-server/org/openqa/selenium/tests/html/path2/cookie2.html" page.cookie("addedCookieForPath2").should eql("new value2") page.cookie?("addedCookieForPath1").should be_false page.delete_cookie "addedCookieForPath2", "/selenium-server/org/openqa/selenium/tests/html/path2/" page.delete_cookie "addedCookieForPath2" page.cookies.should be_empty end end
Version data entries
3 entries across 3 versions & 1 rubygems