1

Firefox でブラウザの Cookie を無効にする必要があります。

私はセレンを使用しています-webdriver 2.32。

4

1 に答える 1

2

これを実現するには、まずプロファイルの設定を微調整する必要があります。以下を実行します。

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 が有効になっていることが確認できます。無効:

クッキー無効

于 2013-07-25T17:38:45.283 に答える