View | Details | Raw Unified | Return to bug 26162
Collapse All | Expand All

(-)a/t/lib/Selenium.pm (-2 / +1 lines)
Lines 193-199 sub show_all_entries { Link Here
193
        my $dt_infos = $self->driver->get_text(
193
        my $dt_infos = $self->driver->get_text(
194
            $xpath_selector . '//div[@class="dataTables_info"]' );
194
            $xpath_selector . '//div[@class="dataTables_info"]' );
195
195
196
        if ( $dt_infos =~ m|Showing 1 to (\d+) of (\d+) entries| ) {
196
        if ( $dt_infos =~ m|Showing 1 to (\d+) of (\d+)(\sentries)?| ) { # FIXME entries is not always displayed
197
            $all_displayed = 1 if $1 == $2;
197
            $all_displayed = 1 if $1 == $2;
198
        }
198
        }
199
199
200
- 

Return to bug 26162