美文网首页
selenium之浏览器路径配置

selenium之浏览器路径配置

作者: 假程序员 | 来源:发表于2019-07-30 01:16 被阅读0次

    废话不多说,直接上代码

    
    import selenium.webdriver.chrome.webdriver as webdriver
    
    from selenium.webdriver.chrome.options import Options,DesiredCapabilities
    
    
    
    
    
    #one
    
    
    
    options=Options()
    
    options.binary_location = r"C:\chrome\bin\chrome.exe"
    
    web driver.WebDriver(options=options)
    
    
    
    #two
    
    
    
    desiredCap = DesiredCapabilities.CHROME.copy()
    
    chrome_options = dict()
    
    chrome_options["binary"] = r"C:\chrome\bin\chrome.exe"
    
    desiredCap["goog:chromeOptions"]=chrome_options
    
    web driver.WebDriver(desired_capabilities=desiredCap)
    
    

    相关文章

      网友评论

          本文标题:selenium之浏览器路径配置

          本文链接:https://www.haomeiwen.com/subject/rnmwrctx.html