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
- Install the package.
npm i jsmagister- 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();
})();- Run the code and if everything works like intended, a screenshot of the last grades should be saved.