Firefox でブラウザの Cookie を無効にする必要があります。
私はセレンを使用しています-webdriver 2.32。
これを実現するには、まずプロファイルの設定を微調整する必要があります。以下を実行します。
require 'selenium-webdriver'
profile = Selenium::WebDriver::Firefox::Profile.new
profile['network.cookie.cookieBehavior'] = 2 # disables all kind of cookies
driver = Selenium::WebDriver.for :firefox, :profile => profile
Tools -> Options -> Privacy of the browser (driver = Selenium::WebDriver.for :firefox, :profile => profile によって開かれます) を開くと、次のような画像が表示され、Cookie が有効になっていることが確認できます。無効: