久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <bdo id='u1ddG'></bdo><ul id='u1ddG'></ul>

    <small id='u1ddG'></small><noframes id='u1ddG'>

    <i id='u1ddG'><tr id='u1ddG'><dt id='u1ddG'><q id='u1ddG'><span id='u1ddG'><b id='u1ddG'><form id='u1ddG'><ins id='u1ddG'></ins><ul id='u1ddG'></ul><sub id='u1ddG'></sub></form><legend id='u1ddG'></legend><bdo id='u1ddG'><pre id='u1ddG'><center id='u1ddG'></center></pre></bdo></b><th id='u1ddG'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='u1ddG'><tfoot id='u1ddG'></tfoot><dl id='u1ddG'><fieldset id='u1ddG'></fieldset></dl></div>

    <tfoot id='u1ddG'></tfoot>

        <legend id='u1ddG'><style id='u1ddG'><dir id='u1ddG'><q id='u1ddG'></q></dir></style></legend>
      1. 'Webdrivers' 可執行文件可能有錯誤的權限.請

        #39;Webdrivers#39; executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home(Webdrivers 可執行文件可能有錯誤的權限.請參閱 https://sites.google.com/a/chromium.org/chromedriver/

          • <bdo id='QieK3'></bdo><ul id='QieK3'></ul>

            <small id='QieK3'></small><noframes id='QieK3'>

              <tbody id='QieK3'></tbody>
            1. <legend id='QieK3'><style id='QieK3'><dir id='QieK3'><q id='QieK3'></q></dir></style></legend>

                1. <tfoot id='QieK3'></tfoot>
                2. <i id='QieK3'><tr id='QieK3'><dt id='QieK3'><q id='QieK3'><span id='QieK3'><b id='QieK3'><form id='QieK3'><ins id='QieK3'></ins><ul id='QieK3'></ul><sub id='QieK3'></sub></form><legend id='QieK3'></legend><bdo id='QieK3'><pre id='QieK3'><center id='QieK3'></center></pre></bdo></b><th id='QieK3'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='QieK3'><tfoot id='QieK3'></tfoot><dl id='QieK3'><fieldset id='QieK3'></fieldset></dl></div>
                  本文介紹了'Webdrivers' 可執行文件可能有錯誤的權限.請參閱 https://sites.google.com/a/chromium.org/chromedriver/home的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我查看了這兩個文檔,但沒有找到答案.

                  I've looked around checked both documentations and have found no answer.

                  我一直在嘗試使用 InstaPy 一個 instagram api for python.在出現多個錯誤并假設 InstaPy 只是遇到一些問題后,我嘗試使用 selinium 對其進行原始編碼.在插入示例代碼并將其更改為我喜歡的之后,我只是確保這個可以工作.我收到一個新錯誤而不是舊錯誤,說權限可能不正確.我嘗試重新安裝并以管理員身份運行,但沒有任何效果.我該如何解決這個問題和/或這是什么意思

                  I've been trying to use InstaPy a instagram api for python. After failing with multiple errors and assuming InstaPy is just having some issues so i tried to raw code it using selinium. after inserting the example code and alter it to my liking i just made sure this one would work. I received a new error instead of the old one saying the permissions may not be right. I have tried reinstall and running as admin but nothing works. how do i fix this and/or what does this mean

                  代碼:

                  import time
                  from selenium import webdriver
                  
                  driver = webdriver.Chrome('C:Webdrivers')  # Optional argument, if not specified will search path.
                  driver.get('http://www.google.com/xhtml');
                  time.sleep(5) # Let the user actually see something!
                  search_box = driver.find_element_by_name('q')
                  search_box.send_keys('ChromeDriver')
                  search_box.submit()
                  time.sleep(5) # Let the user actually see something!
                  driver.quit()
                  

                  錯誤:

                  Traceback (most recent call last):
                    File "C:Program Files (x86)Python36-32libsite-packagesseleniumwebdrivercommonservice.py", line 74, in start
                      stdout=self.log_file, stderr=self.log_file)
                    File "C:Program Files (x86)Python36-32libsubprocess.py", line 707, in __init__
                      restore_signals, start_new_session)
                    File "C:Program Files (x86)Python36-32libsubprocess.py", line 990, in _execute_child
                      startupinfo)
                  PermissionError: [WinError 5] Access is denied
                  
                  During handling of the above exception, another exception occurred:
                  
                  Traceback (most recent call last):
                    File "C:WebdriversRawBot.py", line 5, in <module>
                      driver = webdriver.Chrome('C:Webdrivers')  # Optional argument, if not specified will search path.
                    File "C:Program Files (x86)Python36-32libsite-packagesseleniumwebdriverchromewebdriver.py", line 62, in __init__
                      self.service.start()
                    File "C:Program Files (x86)Python36-32libsite-packagesseleniumwebdrivercommonservice.py", line 86, in start
                      os.path.basename(self.path), self.start_error_message)
                  selenium.common.exceptions.WebDriverException: Message: 'Webdrivers' executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home
                  

                  推薦答案

                  這個錯誤信息...

                  WebDriverException: Message: 'Webdrivers' executable may have wrong permissions.
                  

                  ...暗示您嘗試使用的 ChromeDriver 變體具有錯誤的權限.

                  ...implies that the ChromeDriver variant you are trying to use have wrong permissions.

                  你似乎已經嘗試過了:

                  driver = webdriver.Chrome('C:Webdrivers')  # Optional argument, if not specified will search system $PATH variable.
                  

                  幾句話:

                  • 如果您的底層 os 是windows:

                  • 您必須從 chromedriver_win32.zipnoreferrer">ChromeDriver 下載位置并解壓后使用.
                  • 此外,如果您明確指定 Chromedriver 二進制路徑,則還必須附加二進制擴展名,即 chromedriver.exe.
                  • 在提到 Chromedriver 二進制路徑時,您必須使用單個 正斜杠 即 (/) 以及原始 (r) 開關,或者您必須使用轉義的 反斜杠 即 (\).
                  • 所以你的有效代碼行將是:

                  • You have to download chromedriver_win32.zip from the ChromeDriver Download Location and unzip it for usage.
                  • Additionally, if you are explicitly specifying the Chromedriver binary path you have to append the binary extension as well, effectively i.e. chromedriver.exe.
                  • While mentioning the Chromedriver binary path you have to either use the single forward slash i.e. (/) along with the raw (r) switch or you have to use the escaped backslash i.e. (\).
                  • So your effective line of code will be :

                  driver = webdriver.Chrome(executable_path=r'C:/path/to/chromedriver.exe')
                  

                  如果您的底層 os 是linux:

                  • 您必須從 chromedriver_linux64>ChromeDriver 下載位置并解壓以供使用.
                  • 此外,如果您明確指定 Chromedriver 二進制路徑,您不必必須為可執行二進制文件提供任何擴展名,即 chromedriver.
                  • 在提到 Chromedriver 二進制路徑時,您必須使用單個 正斜杠即(/).
                  • 所以你的有效代碼行將是:

                  • You have to download chromedriver_linux64 from the ChromeDriver Download Location and untar it for usage.
                  • Additionally, if you are explicitly specifying the Chromedriver binary path you don't have to provide any extension for the executable binary, effectively i.e. chromedriver.
                  • While mentioning the Chromedriver binary path you have to use the single forward slash i.e. (/).
                  • So your effective line of code will be :

                  driver = webdriver.Chrome(executable_path='/path/to/chromedriver')
                  

                  如果您的底層 os 是macos:

                  • 您必須從 chromedriver_mac64>ChromeDriver 下載位置并解壓以供使用.
                  • 此外,如果您明確指定 Chromedriver 二進制路徑,您不必必須為可執行二進制文件提供任何擴展名,即 chromedriver.
                  • 在提到 chromedriver 二進制路徑時,您必須使用單個 正斜杠即(/).
                  • 所以你的有效代碼行將是:

                  • You have to download chromedriver_mac64 from the ChromeDriver Download Location and untar it for usage.
                  • Additionally, if you are explicitly specifying the Chromedriver binary path you don't have to provide any extension for the executable binary, effectively i.e. chromedriver.
                  • While mentioning the chromedriver binary path you have to use the single forward slash i.e. (/).
                  • So your effective line of code will be :

                  driver = webdriver.Chrome(executable_path='/path/to/chromedriver')
                  

                  這篇關于'Webdrivers' 可執行文件可能有錯誤的權限.請參閱 https://sites.google.com/a/chromium.org/chromedriver/home的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How to make a discord bot that gives roles in Python?(如何制作一個在 Python 中提供角色的不和諧機器人?)
                  Discord bot isn#39;t responding to commands(Discord 機器人沒有響應命令)
                  Can you Get the quot;About mequot; feature on Discord bot#39;s? (Discord.py)(你能得到“關于我嗎?Discord 機器人的功能?(不和諧.py))
                  message.channel.id Discord PY(message.channel.id Discord PY)
                  How do I host my discord.py bot on heroku?(如何在 heroku 上托管我的 discord.py 機器人?)
                  discord.py - Automaticaly Change an Role Color(discord.py - 自動更改角色顏色)
                  • <bdo id='epsF1'></bdo><ul id='epsF1'></ul>

                      <tbody id='epsF1'></tbody>

                      1. <legend id='epsF1'><style id='epsF1'><dir id='epsF1'><q id='epsF1'></q></dir></style></legend>

                        <tfoot id='epsF1'></tfoot>
                          • <small id='epsF1'></small><noframes id='epsF1'>

                          • <i id='epsF1'><tr id='epsF1'><dt id='epsF1'><q id='epsF1'><span id='epsF1'><b id='epsF1'><form id='epsF1'><ins id='epsF1'></ins><ul id='epsF1'></ul><sub id='epsF1'></sub></form><legend id='epsF1'></legend><bdo id='epsF1'><pre id='epsF1'><center id='epsF1'></center></pre></bdo></b><th id='epsF1'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='epsF1'><tfoot id='epsF1'></tfoot><dl id='epsF1'><fieldset id='epsF1'></fieldset></dl></div>
                            主站蜘蛛池模板: 亚洲男人的天堂网站 | 国产亚洲黄色片 | 国产一区二区三区在线 | 中文字幕av高清 | 国产在线视频一区二区董小宛性色 | 中文日韩字幕 | 精品亚洲二区 | 成人性视频免费网站 | 久久久国产一区二区三区四区小说 | 91私密视频 | 欧美精品在线观看 | 久久精品aaa | 国产精品久久久久久久久久妇女 | 亚洲精品久久久一区二区三区 | 九色在线| 国产精品夜夜春夜夜爽久久电影 | 亚洲精品一区二区三区蜜桃久 | 欧美亚洲国产成人 | 国产人久久人人人人爽 | 精品少妇一区二区三区在线播放 | 久久av网 | 久久久久一区二区三区四区 | 日本高清中文字幕 | 日韩在线观看精品 | 久久国产精品99久久久久 | 国产一区二区久久 | 国产色片在线 | 狠狠色网 | 精品一区二区在线看 | 久久久久久国产精品免费免费男同 | 中文字幕视频在线观看 | 欧美bondage紧缚视频 | 91精品国产综合久久久久久漫画 | 国产午夜高清 | 国产精品99久久久久久久vr | 免费在线精品视频 | 亚洲国产精品久久久 | 91在线看片 | 欧美精品一二三区 | 久久精品亚洲一区 | 精品亚洲91 |