I want to make a powershell script, that will:
- Run Chrome
- Open a google.com website
- Stay some time on it
- Go from google.com ===> bing.com in the same tab.
So this is the code, that works for me, it's run Chrome and open google.com website in the tab: Start-Process "chrome.exe" "www.google.com"
The main problem, I don't know how to open new link in the same tab. I found this article https://msdn.microsoft.com/en-us/library/aa768360(v=vs.85).aspx , but I am a total noobie and can't use this information properly. Is there someone, who could help me? Please?