I'm trying to automate this basic things with PYTHON:
- Open browser chrome
- Open new tab by keyboard ( Ctrl + t )
I only know how to open the browser now and search for a link :
from selenium import webdriver
browser = webdriver.Chrome('location')
browser.get('https://google.com')