Questions tagged [start-job]

Initiate-Job is a PowerShell Cmdlet used to execute a Scriptblock as a separate background task.

There seems to be an issue with the functionality of Selenium in Powershell when used within the Start-J

I am attempting to run a PowerShell script that utilizes Selenium and Start-Job Start-Job { $Url = 'https://stackoverflow.com/' $Driver = Start-SeChrome Enter-SeUrl -Url $Url -Driver $Driver } The intended functionality is for the script ...