I know there are rate limits for when you send get requests to a website, but does it apply to selenium? Can I get limited for that?
For example, in the above code:
from selenium import webdriver
from selenium.webdriver.common.by import By
driver = webdriver.Chrome(r"C:\Users\path\chromedriver.exe")
driver.get("https://google.com/")
while True:
driver.find_element(by=By.CLASS_NAME, value="link")
Does the find_element()
function count as a GET
request?