0e57e6049e
This also creates a new package requirement (xml2js) for the playwright test suite and adds a new helper function to make an API call and obtain its parsed XML response as a JavaScript object
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
const { test } = require('@playwright/test');
|
|
const { API } = require('./api.js');
|
|
|
|
test.describe.parallel('API', () => {
|
|
|
|
test('getMeetings / getMeetingInfo', async ({ browser, context, page }) => {
|
|
const api = new API(browser, context, page);
|
|
await api.getMeetingInfo();
|
|
});
|
|
|
|
});
|