現在の日付を含む非表示フィールドを持つフォームがあります。
カピバラファインダーを次のように書く方法を見つけようとしています:
- フィールドがあることを確認する
- フィールドの値を確認する
これはカピバラで可能ですか?
現在の日付を含む非表示フィールドを持つフォームがあります。
カピバラファインダーを次のように書く方法を見つけようとしています:
これはカピバラで可能ですか?
これを行うだけです:
find("#id_of_hidden_input", :visible => false).value
spec_helper.rb
または同等の隠し要素をグローバルに無視しないようにカピバラに指示することもできます。デフォルトの動作はオーバーライドできます。
# default behavior for hidden elements
# Capybara.ignore_hidden_elements = false
# find all elements (hidden or visible)
page.all(".articles .article[id='foo']")
# find visible elements only (overwrite the standard behavior just for this query)
page.all(".articles .article[id='foo']", :visible => true)
# changing the default behavior (e.g. in your features/support/env.rb file)
Capybara.ignore_hidden_elements = true
# now the query just finds visible nodes by default
page.all(".articles .article[id='foo']")
# but you can change the default behaviour by passing the :visible option again
page.all(".articles .article[id='foo']", :visible => false)
この記事からの例。
マッチャーhas_field?
は非表示フィールドでも機能します。find
このコンテキストで、またはこのコンテキストで奇妙な体操を行う必要はありませんall
。
page.has_field? "label of the field", type: :hidden, with: "field value"
page.has_field? "id_of_the_field", type: :hidden, with: "field value"
:type
ここで重要なのは、オプションを:hidden
明示的に設定することです。
非表示フィールドでラベルを使用する理由 これは、元のテキスト フィールドをクロークして非表示にする flatpickr などの js ライブラリを使用している場合に便利です。動作テストを特定のマークアップに結合しないことは、常に良いことです。
find_by_css
次のように xpath を使用するか、使用することで簡単に実行できます
page.find_by_css('#foo .bar a') #foo is the id the foo has .bar class
page.find('/table/tbody/tr[3]') #path of the element we want to find