Using Puppeteer to insert new question bank

To continue the process of automating the insertion of question banks, I decided to extend the Puppeteer script to insert a new question bank. The script is:


const puppeteer = require('puppeteer');
const delay = ms => new Promise(res => setTimeout(res, ms));

(async() => {

    const browser = await puppeteer.launch({headless: false});
    const page = await browser.newPage();
    await page.goto('http://canvas.docker/login/canvas', {waitUntil: 'load'});
    console.log(page.url());

    // Type our username and password
    await page.type('#pseudonym_session_unique_id', 'xxxx');
    await page.type('#pseudonym_session_password', 'xxxxx');

    // Submit form
    await page.click('.Button.Button--login');

    delay(3000);
    // Wait for  to load
    await page.goto('http://canvas.docker/courses/2/question_banks', {waitUntil: 'load'});

    console.log('FOUND!', page.url());
    const token = await page.evaluate(() => {
	const token1=document.querySelector("#edit_bank_form input[name=authenticity_token]").value // output the token just to see it
	return token1;
    });
    console.info("token", token);

    const title="A new and interesting question bank"
    await page.$eval('#edit_bank_form #assessment_question_bank_title', (el, _title) => el.value = _title, title); // output the token just to see it

    const f1 = await page.$eval('form#edit_bank_form', form => form.submit());
    console.info("f1", f1);

    // Extract the results from the page
    const links = await page.evaluate(() => {
      const anchors = Array.from(document.querySelectorAll('.question_bank'));
	return anchors.map(anchor => anchor.id+','+anchor.querySelector('.title').href+','+anchor.querySelector('.title').text); // textContent
    });
    console.log(links.join('\n'));

    await page.screenshot({path: 'login1.png'});

    browser.close();

})();

The question before the insertion:

Question bank before insert

The question bank after the insertion:

question bank after insertion

 

Console output where the script is run:

node login2.js
http://canvas.docker/login/canvas
FOUND! http://canvas.docker/courses/2/question_banks
token XxDb1pjLiLfsHqGlqZNhZ+D3R+0Ox4qESvk6SC+DRJ49YZqC0I7ghZVG1fzC8hZUj70MlU2uu94As0x7brQOxg==
f1 undefined