JSPM

jsmagister

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q17231F
  • License MIT

A high level api making it easier to perform various tasks on Magister.

Package Exports

  • jsmagister

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jsmagister) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jsmagister

A high level api making it easier to perform various tasks on Magister.

Getting started

  1. Install the package.
npm i jsmagister
  1. Place the following code somewhere.
const magister = require('jsmagister');

(async () => {
  // Log in to Magister. 
  // Note: The school is the subdomain you will be on once you're logged in to Magister.
  await magister.login('<username>', '<password>', '<school>');

  // Wait for the page to load.
  await magister.waitForPageLoad();

  // Navigate to the 'cijfers' tab.
  await magister.navigate('cijfers');

  // Wait for page content to load.
  await magister.waitForTimeout(1000);

  // Take a screenshot and save it.
  await magister.takeScreenShot('grades.png');

  // Close magister.
  await magister.close();
})();
  1. Run the code and if everything works like intended, a screenshot of the last grades should be saved.