logo
search
Others

How to Disable Teaching Bubble Pop-Ups in SharePoint

Maira MehtabMaira Mehtab Sep 22, 2026 869 views

Question details

The user needs to disable instructional teaching bubble pop-ups in SharePoint because they interfere with the execution of automated test scripts.

Product
SharePoint
Device & OS
not provided
Scenario
Running automated test scripts within a SharePoint tenant environment.
Observed behavior
Instructional teaching bubbles unexpectedly appear on the screen, blocking UI elements and interrupting the automated testing process.
Before you start

Verify whether your automated testing framework has a built-in mechanism to detect and bypass dynamic UI overlays before attempting tenant-wide configurations.

Solution 1Recommended

Workaround: Handle Prompts in Scripts and Submit Feedback

Since Microsoft does not provide a direct tenant-wide setting to disable teaching bubbles, you must configure your automation scripts to handle them manually.

Currently, there is no direct tenant-level configuration in SharePoint Admin Center to disable instructional teaching bubbles. These prompts are designed to guide users but can be problematic for UI automation.

1
Update test scripts to handle pop-ups

Modify your automated test scripts (using tools like Selenium, Playwright, or Cypress) to detect the DOM elements of the teaching bubbles. Add explicit wait conditions and commands to automatically click the 'Got it' or 'Close' buttons when they appear.

2
Reuse browser profiles

Configure your test automation framework to save and reuse user profiles or cookies. Teaching bubbles typically only appear on the first interaction, so saving the session state can prevent them from triggering in subsequent tests.

3
Submit feature feedback to Microsoft

Navigate to the official Microsoft SharePoint feedback portal. Submit a feature request asking for improved automation controls or a tenant-wide toggle to disable instructional pop-ups for service accounts.

Automation Testing Tip: Using custom CSS injection in your automation framework to set 'display: none' on specific SharePoint teaching bubble classes can also serve as an effective temporary workaround.
Free Microsoft Office alternative

Looking for a Distraction-Free Office Solution? Try WPS Office

Dealing with unskippable UI pop-ups in complex platforms can be frustrating. If you need a straightforward, lightweight, and free Office alternative for document creation and sharing, WPS Office provides a clean, distraction-free interface.

  1. 1. Download the software: Visit the official WPS Office website and download the free installation package for your operating system.
  2. 2. Install WPS Office: Run the installer and follow the simple on-screen instructions to complete the setup process.
  3. 3. Open your documents seamlessly: Launch WPS Office and instantly open your existing Microsoft Office files without worrying about format conversion or unexpected UI interruptions.
Fully compatible with Microsoft Word, Excel, and PowerPoint formatsClean, distraction-free interface without forced instructional pop-upsFree and lightweight alternative to heavy enterprise suitesSeamless migration for document editing and management
microsoft office alternative - wps office

Frequently Asked Questions

Can I use PowerShell to disable SharePoint teaching bubbles?

No. Currently, there is no documented PowerShell cmdlet or PnP script that disables these specific UI teaching bubbles across an entire SharePoint tenant.

Do teaching bubbles disappear after the first login?

Yes, typically once a user acknowledges or dismisses the prompt, it will not appear again for that specific user profile. Retaining user profiles in your test automation can help bypass this issue.

Are there browser extensions to block SharePoint pop-ups during manual testing?

Standard pop-up blockers do not usually affect in-page UI elements like SharePoint teaching bubbles. You would need to use a custom content blocker like uBlock Origin to hide the specific DOM elements using CSS rules.