Functions/GenXdev.Webbrowser.Playwright/Stop-WebbrowserVideos.ps1
################################################################################ <# .SYNOPSIS Pauses video playback in all active browser sessions. .DESCRIPTION Iterates through all active browser sessions and pauses any playing videos by executing JavaScript commands. The function maintains the original session state and handles errors gracefully. .EXAMPLE Stop-WebbrowserVideos .EXAMPLE wbsst #> function Stop-WebbrowserVideos { [CmdletBinding(SupportsShouldProcess)] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSAvoidGlobalVars", "")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseSingularNouns", "")] [Alias("wbsst")] [Alias("ssst")] [Alias("wbvideostop")] param( [Alias("e")] [Parameter( Mandatory = $false, HelpMessage = "Opens in Microsoft Edge" )] [switch] $Edge, ############################################################################### [Alias("ch")] [Parameter( Mandatory = $false, HelpMessage = "Opens in Google Chrome" )] [switch] $Chrome ) begin { Write-Verbose "Starting video pause operation across browser sessions" # store the current session reference to restore it later $originalSession = $Global:chromeSession $originalController = $Global:chromeController # ensure we have an active browser session if (($null -eq $Global:chromeSessions) -or ($Global:chromeSessions.Count -eq 0)) { # select a browser tab if none are active $null = Select-WebbrowserTab -Chrome:$chrome -Edge:$edge } } process { # iterate through each browser session and pause videos $Global:chromeSessions | ForEach-Object { $currentSession = $_ if ($null -eq $_) { return } if ($PSCmdlet.ShouldProcess("Browser session", "Pause videos")) { try { Write-Verbose "Attempting to pause videos in session: $currentSession" # select the current tab for processing $null = Select-WebbrowserTab -ByReference $currentSession # execute pause() command on all video elements Get-WebbrowserTabDomNodes "video" "e.pause()" -NoAutoSelectTab } catch { Write-Warning "Failed to pause videos in session: $currentSession `r`n$($_.Exception.Message)" } } } } end { Write-Verbose "Restoring original browser session reference" $Global:chromeSession = $originalSession $Global:chromeController = $originalController } } ################################################################################ |