Override SPFx context properties during Playwright E2E tests
While creating new E2E tests for a SharePoint Framework solution, I wanted to test the solution with different permission sets. Usually, when you run your tests, you start these up with a user with the required permissions to run the tests. Instead of creating a new user with different permissions or different sites/pages to perform the tests, I looked into the possibility of overriding the context properties of SPFx.
By overriding the context properties, you can perform the tests against the same page and, in my case, the same user but with different permissions.
How to override the context properties
You first need access to the context
object to override the context properties. When working in an SPFx solution, you can access it from this.context
, but during an E2E test, you need to get access to it differently.
There is a moduleLoaderPromise
property on the window
object, a promise that resolves to the moduleLoader
object together with the spClientSidePageContext
object.
To gain access, you can use the following code:
// Wait until the `moduleLoaderPromise` is availableawait page.waitForFunction(() => (window as any).moduleLoaderPromise);
// Get the `context` objectawait page.evaluate(() => { const moduleLoader = (window as any).moduleLoaderPromise; if (!moduleLoader?.context) { console.log("Module loader context is not available"); return; }
return moduleLoader.context;});
With the context
object, you can override the properties. For example, in my case, I want to override the permissions of the web
object to mock a user with owner, member, or visitor permissions.
const overridePermissions = async (page: Page, permission: "owner" | "member" | "visitor",) => { await page.waitForFunction(() => (window as any).moduleLoaderPromise);
await page.evaluate(async ({ permission, type }) => { const moduleLoader = await (window as any).moduleLoaderPromise; if (!moduleLoader.context) { console.log("Module loader context is not available"); return; }
// Visitor permissions let permissionValue = { High: 176, Low: 138612833 };
if (permission === "owner") { // Owner permissions permissionValue = { High: 2147483647, Low: 4294705151 }; } else if (permission === "member") { // Member permissions permissionValue = { High: 432, Low: 1011028719 }; }
moduleLoader.context._pageContext._web.permissions._value = permissionValue; }, { permission, type, });};
With the overridden permissions, you can perform your tests against the same page. You can use the overridePermissions
function to switch between permission sets.
test.describe("Permissions", () => { test(`Full control`, async ({ page }) => { await page.goto(`<your url>`, { waitUntil: "domcontentloaded", });
await overridePermissions(page, "owner");
// Perform your tests });});
Conclusion
By overriding the context properties of SPFx, you can perform your E2E tests against the same page but with mocked properties, allowing you to test your solution quicker without creating new users, pages, or sites for each test case.
Of course, for in-depth testing of your solution, it would be better to use a user with the correct permission set, but for simple cases like when your solution needs to show or hide certain elements, the current solution is a perfect fit.
Related articles
End-to-End Test Microsoft 365 Solutions with Playwright
This article explains how you can make use of Playwright to end-to-end test your Microsoft 365 (SharePoint & Microsoft Teams) solutions.
Reporting your Playwright tests to Microsoft Teams
Learn how to easily report your Playwright test results to a Microsoft Teams channel with the help of the playwright-msteams-reporter reporter.
E2E testing in MFA environment with Playwright auth session
Easily perform E2E testing in MFA environments using Playwright's authenticated session state. Learn how to automate your tests without logging in every time.
Report issues or make changes on GitHub
Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.
Comments
Let's build together
Manage content in VS Code
Present from VS Code