Hey so I have this line of code. It should visit google and refresh the page 15 times. Then close the driver and open it again another 15 times and then close the browser again and so on. It should keep doing that until the program is stopped.
from selenium import webdriver
import chromedriver_binary
driver = webdriver.Chrome()
count = 15
while count != 0:
driver.get('https://google.com/')
count -= 1
driver.close()
This is my code so far. Any help will be great.