Open
Description
Won't have time to do a pull request for this in a while, but I thought I share this information if someone else can do it whilst I can't.
Here is the code that needs changing, (I tested on another project I am working on), at least for the Postgres case. Changes still need to be made for the other databases setups.
Might be good to find a way to check whether version <6.4.0 or >=6.4.0, and trigger the right code to do the tests properly.
So here we go:
has to be replaced by:
it { is_expected.to have_css 'form[name=setupdbchoice]' }
it { is_expected.to have_css 'div.select-database-choice-box[data-database-choice=custom]' }
it { is_expected.to have_css 'div.select-database-choice-box[data-database-choice=embedded]' }
it { is_expected.to have_button 'Next' }
And
has to be replaced by:
before :all do
within 'form[name=setupdbchoice]' do
find(:css, 'div.select-database-choice-box[data-database-choice=custom]').trigger('click')
click_button 'Next'
wait_for_page
end
end
it { is_expected.to have_current_path %r{/setup/setupdbtype-start.action} }
it { is_expected.to have_css 'form[name=setupdbtype]' }
it { is_expected.to have_css 'select[name=dbChoiceSelect]' }
it { is_expected.to have_button 'Next' }
describe 'selecting PostgreSQL as database' do
before :all do
within 'form[name=setupdbtype]' do
select 'PostgreSQL', from: 'dbChoiceSelect'
click_button 'Next'
wait_for_page
end
end
it { is_expected.to have_button 'Direct JDBC' }
end
Activity