How to automate website actions using PowerShell
As you may have come across PowerShell before, there is one amazing feature I would like to introduce to you today. Not only PowerShell can manage some Windows tasks but it could h andle a webpage using PowerShell program and Selenium. Requirements: Git Clone Selenium module from https://github.com/adamdriscoll/selenium-powershell.git Chrome driver from https://chromedriver.chromium.org/downloads to match your current Google Chrome's version. So mine is on v83.x then you must download the one with v83 too. Once you downloaded Chrome driver, you should replace the highlight location like screenshot showed. Search and Run PowerShell ISE as admin. Now create a new script and find your cloned Selenium module for example mine saved in C:\Users\Virtual10\Documents\GitHub\selenium-powershell Import your Selenium.psd1 module like below scripts: Import-Module "C:\Users\Virtual10\Documents\GitHub\selenium-powershell\Selenium.psd1" $Driver = Start-SeChrome if ($...