Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Selenium Webdriver を使用して、Firefox ブラウザのブックマーク バーを有効にするにはどうすればよいですか。きゅうりルビーのテストケースで有効にする必要があります。
ブックマーク ツールバーを有効にしてカスタム Firefox プロファイルを事前に作成し、そのプロファイルを使用して毎回 WebDriver をインスタンス化することができます。これにより、WebDriver が毎回クリーンなプロファイルを作成する必要がないため、起動時間も短縮されます。
このようにします:
driver = Selenium::WebDriver.for(:firefox, :profile => "my-existing-profile")