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

(-)a/t/lib/Selenium.pm (-2 / +1 lines)
Lines 236-242 sub show_all_entries { Link Here
236
    my $max_retries = $self->max_retries;
236
    my $max_retries = $self->max_retries;
237
    while ( not $all_displayed ) {
237
    while ( not $all_displayed ) {
238
        my $dt_infos = $self->driver->get_text(
238
        my $dt_infos = $self->driver->get_text(
239
            $xpath_selector . '//div[@class="dataTables_info"]' );
239
            $xpath_selector . '//div[@class="dt-info"]' );
240
240
241
        if ( $dt_infos =~ m|Showing 1 to (\d+) of (\d+) entries| ) {
241
        if ( $dt_infos =~ m|Showing 1 to (\d+) of (\d+) entries| ) {
242
            $all_displayed = 1 if $1 == $2;
242
            $all_displayed = 1 if $1 == $2;
243
- 

Return to bug 34913