Sha256: 2e7b241e3958eea130547402face143e59aa1dc5902044cdc08a2ca8ae0b1800
Contents?: true
Size: 1.3 KB
Versions: 5
Compression:
Stored size: 1.3 KB
Contents
# encoding: utf-8 require 'acceptance_helper' describe 'On the page /resultset_processings2 with the helper :with_resultset that defines a callback on a resultset as an ActiveRelation', type: :request, js: true do describe 'WiceGrid' do before :each do visit '/resultset_processings2' end it 'shows records displayed on all pages' do find(:css, '#process').click expect(page).to have_content('50 records on all pages: 507, 519, 537, 540, 511, 515, 523, 524, 527, 531, 542, 551, 518, 520, 532, 535, 539, 512, 514, 516, 521, 522, 543, 544, 546, 550, 552, 510, 541, 553, 508, 513, 528, 529, 548, 556, 525, 534, 547, 555, 509, 517, 526, 536, 538, 545, 549, 530, 533, and 554') end it 'shows records displayed on all pages with a text filter selection' do fill_in('g_f_title', with: 'ed') expect(page).to have_content('1-2 / 2') find(:css, '#process').click expect(page).to have_content('2 records on all pages: 507 and 534') end it 'shows records displayed on all pages with a custom filter selection' do select 'Cancelled', from: 'g_f_status_id' expect(page).to have_content('1-5 / 8') find(:css, '#process').click expect(page).to have_content('8 records on all pages: 511, 515, 523, 524, 527, 531, 542, and 551') end end end
Version data entries
5 entries across 5 versions & 1 rubygems