Sent OP crypto to buy a sample. As soon as crypto payment cleared, OP deleted the telegram chat and blocked.
All for 1x one edu email (lol).
Buyer beware.
If you copied the first answer, you should be calling "chrome_options = Options()", not webdriver.ChromeOptions()
Delete all your code including the top imports, and also use the "chrome_options.headless = True".
Not gonna derail thread any further. Good luck
I edited the post but didn't update it before you replied.
Try and do things in that order then apply it at the end like so:
driver = webdriver.Chrome(options=options, service=service)
Can't help more, as I use the geckodriver not chrome, but options in that order fixed it for me.
Try importing this at top:
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
then:
chrome_path = r'C:\chromewebdriver\chromedriver.exe'
service = Service(executable_path=chrome_path)
options = Options()
options.headless = True
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.