0
RSpecの複数のテストにまたがるCapybaraスコープを定義できますか?複数のテストにまたがるCapybara 'within'スコープ
例えば、私はこのターンしたいと思います。その一方
around :each do |example|
within('.some-div') do
example.run
end
end
:私はこのようなaround
ブロックを使用してみました
context 'with two things' do
before :each do
within('.some-div') # pseudo-code - this doesn't work
end
it 'has foo' do
expect(page).to have_text('foo')
end
it 'has bar' do
expect(page).to have_text('bar')
end
end
:この中
it 'has two things' do
within('.some-div') do
expect(page).to have_text('foo')
expect(page).to have_text('bar')
end
end
をパースして実行すると、実際にはwithin
スコープがこの例に適用されるわけではありません。