Puppeteer in NodeJS reports 'Error: Node is either not visible or not an HTMLElement'

First and foremost, your defaultViewport object that you pass to puppeteer.launch() has no keys, only values.

You need to change this to:

'defaultViewport' : { 'width' : width, 'height' : height }

The same goes for the object you pass to page.setViewport().

You need to change this line of code to:

await page.setViewport( { 'width' : width, 'height' : height } );

Third, the function page.setUserAgent() returns a promise, so you need to await this function:

await page.setUserAgent( 'UA-TEST' );

Furthermore, you forgot to add a semicolon after handle = handles[12].

You should change this to:

handle = handles[12];

Additionally, you are not waiting for the navigation to finish (page.waitForNavigation()) after clicking the first link.

After clicking the first link, you should add:

await page.waitForNavigation();

I've noticed that the second page sometimes hangs on navigation, so you might find it useful to increase the default navigation timeout (page.setDefaultNavigationTimeout()):

page.setDefaultNavigationTimeout( 90000 );

Once again, you forgot to add a semicolon after handle = handles[12], so this needs to be changed to:

handle = handles[12];

It's important to note that you are using the wrong selector for your second link that you are clicking.

Your original selector was attempting to select elements that were only visible to xs extra small screens (mobile phones).

You need to gather an array of links that are visible to your viewport that you specified.

Therefore, you need to change the second selector to:

div[id$="-KcazEUq"] article .dfo-widget-sm a

You should wait for the navigation to finish after clicking your second link as well:

await page.waitForNavigation();

Finally, you might also want to close the browser (browser.close()) after you are done with your program:

await browser.close();

Note: You might also want to look into handling unhandledRejection errors.


Here is the final solution:

'use strict';

const puppeteer = require( 'puppeteer' );

const initialPage = 'https://statsregnskapet.dfo.no/departementer';

const selectors = [
    'div[id$="-bVMpYP"] article a',
    'div[id$="-KcazEUq"] article .dfo-widget-sm a'
];

( async () =>
{
    let selector;
    let handles;
    let handle;

    const width = 1024;
    const height = 1600;

    const browser = await puppeteer.launch(
    {
        'defaultViewport' : { 'width' : width, 'height' : height }
    });

    const page = await browser.newPage();

    page.setDefaultNavigationTimeout( 90000 );

    await page.setViewport( { 'width' : width, 'height' : height } );

    await page.setUserAgent( 'UA-TEST' );

    // Load first page

    let stat = await page.goto( initialPage, { 'waitUntil' : 'domcontentloaded' } );

    // Click on selector 1 - works ok

    selector = selectors[0];
    await page.waitForSelector( selector );
    handles = await page.$$( selector );
    handle = handles[12];
    console.log( 'Clicking on: ', await page.evaluate( el => el.href, handle ) );
    await handle.click();  // OK

    await page.waitForNavigation();

    // Click that selector 2 - fails

    selector = selectors[1];
    await page.waitForSelector( selector );
    handles = await page.$$( selector );
    handle = handles[12];
    console.log( 'Clicking on: ', await page.evaluate( el => el.href, handle ) );
    await handle.click();

    await page.waitForNavigation();

    await browser.close();
})();

I know I’m late to the party but I discovered an edge case that gave me a lot of grief, and this thread, so figured I’d post my findings.

The culprit: CSS

scroll-behavior: smooth

If you have this you will have a bad time.

The solution:

await page.addStyleTag({ content: "{scroll-behavior: auto !important;}" });

Hope this helps some of you.


My way

async function getVisibleHandle(selector, page) {

    const elements = await page.$$(selector);

    let hasVisibleElement = false,
        visibleElement = '';

    if (!elements.length) {
        return [hasVisibleElement, visibleElement];
    }

    let i = 0;
    for (let element of elements) {
        const isVisibleHandle = await page.evaluateHandle((e) => {
            const style = window.getComputedStyle(e);
            return (style && style.display !== 'none' &&
                style.visibility !== 'hidden' && style.opacity !== '0');
        }, element);
        var visible = await isVisibleHandle.jsonValue();
        const box = await element.boxModel();
        if (visible && box) {
            hasVisibleElement = true;
            visibleElement = elements[i];
            break;
        }
        i++;
    }

    return [hasVisibleElement, visibleElement];
}

Usage

let selector = "a[href='https://example.com/']";

let visibleHandle = await getVisibleHandle(selector, page);

if (visibleHandle[1]) {

   await Promise.all([
     visibleHandle[1].click(),
     page.waitForNavigation()
   ]);
}