• 21-02-2020, 22:24:47
    #1
    Konunun silinmesini talep ediyorum
  • 21-02-2020, 22:35:17
    #2
    PROXY = "23.23.23.23:3128"
    # IP:PORT or HOST:PORT
    chrome_options = webdriver.ChromeOptions()
    chrome_options.add_argument('--proxy-server=%s' % PROXY)
    chrome = webdriver.Chrome(options=chrome_options)
    chrome.get("http://whatismyipaddress.com")
  • 21-02-2020, 22:40:02
    #3
    SpyBey adlı üyeden alıntı: mesajı görüntüle
    PROXY = "23.23.23.23:3128"
    # IP:PORT or HOST:PORT
    chrome_options = webdriver.ChromeOptions()
    chrome_options.add_argument('--proxy-server=%s' % PROXY)
    chrome = webdriver.Chrome(options=chrome_options)
    chrome.get("http://whatismyipaddress.com")
    selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium....omedriver/home

    Böyle bir hata alıyorum hocam kodu aşağı da ki kodu ekleyince de AttributeError: 'WebDriver' object has no attribute 'add_argument' böyle bir hata alıyorum
    chrome_options = webdriver.Chrome(executable_path='C:\Users\mahmu\O neDrive\Masaüstü\chromedriver.exe')
  • 21-02-2020, 22:54:31
    #4
    hocam chromedriverı python pathine attınız mı? Anladığım kadarıyla masaüstüne atmışsınız chromedriverı. Onu pythonun yüklü olduğu pathe atmayı deneyin.
  • 22-02-2020, 02:04:46
    #5
    SpyBey adlı üyeden alıntı: mesajı görüntüle
    PROXY = "23.23.23.23:3128"
    # IP:PORT or HOST:PORT
    chrome_options = webdriver.ChromeOptions()
    chrome_options.add_argument('--proxy-server=%s' % PROXY)
    chrome = webdriver.Chrome(options=chrome_options)
    chrome.get("http://whatismyipaddress.com")
    dadaskral adlı üyeden alıntı: mesajı görüntüle
    hocam chromedriverı python pathine attınız mı? Anladığım kadarıyla masaüstüne atmışsınız chromedriverı. Onu pythonun yüklü olduğu pathe atmayı deneyin.
    Çok teşekkür ederim hocam sorun çözüldü
  • 22-02-2020, 10:35:50
    #6
    from selenium import webdriver
    from selenium.webdriver.common.keys import Keys
    from selenium.webdriver.chrome.options import Options
    import os

    import time
    import requests
    import random
    print("ornek 1.1.1.1ort")
    proxy=input("proxy giriniz:")
    PROXY = proxy
    webdriver.DesiredCapabilities.CHROME['proxy']={
    "httpProxy":PROXY,
    "ftpProxy":PROXY,
    "sslProxy":PROXY,
    "noProxy":None,
    "proxyType":"MANUAL",
    "autodetect":False
    }
    a = "chromedriver.exe"
    driver = webdriver.Chrome(executable_path=a)

    şunuda kulanabılırsınız ben hep bunu kulanıyorum buradada dursun
  • 22-02-2020, 11:50:46
    #7
    Hasario adlı üyeden alıntı: mesajı görüntüle
    from selenium import webdriver
    from selenium.webdriver.common.keys import Keys
    from selenium.webdriver.chrome.options import Options
    import os

    import time
    import requests
    import random
    print("ornek 1.1.1.1ort")
    proxy=input("proxy giriniz:")
    PROXY = proxy
    webdriver.DesiredCapabilities.CHROME['proxy']={
    "httpProxy":PROXY,
    "ftpProxy":PROXY,
    "sslProxy":PROXY,
    "noProxy":None,
    "proxyType":"MANUAL",
    "autodetect":False
    }
    a = "chromedriver.exe"
    driver = webdriver.Chrome(executable_path=a)

    şunuda kulanabılırsınız ben hep bunu kulanıyorum buradada dursun
    Hocam şifresiz proxyler de işe yariyor ama şifreli proxy icin ext şart 😊 bana da şifreli için lazımdı ama buldum 😊 gene de teşekkür ederim