Recent content by exactmatch

  1. E

    Permanently Closed Marketplace Sales Thread

    I Want MaxProxy.com
  2. E

    Permanently Closed Marketplace Sales Thread

    I want a free trial
  3. E

    Permanently Closed Marketplace Sales Thread

    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.
  4. E

    Permanently Closed Marketplace Sales Thread

    I want a discount
  5. E

    [Journey] 1 million UVs/month in 12 months using AI generated content. Let's do it!

    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
  6. E

    [Journey] 1 million UVs/month in 12 months using AI generated content. Let's do it!

    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.
  7. E

    [Journey] 1 million UVs/month in 12 months using AI generated content. Let's do it!

    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
Back
Top