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

  • <legend id='UzCbV'><style id='UzCbV'><dir id='UzCbV'><q id='UzCbV'></q></dir></style></legend>

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

      <bdo id='UzCbV'></bdo><ul id='UzCbV'></ul>
    1. <tfoot id='UzCbV'></tfoot>

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

        從 chrome 位置 C:..ChromeApplicationchrome.exe 開(kāi)始的進(jìn)程

        The process started from chrome location C:..ChromeApplicationchrome.exe is no longer running, so ChromeDriver is assuming that Chrome has crashed(從 chrome 位置 C:..ChromeApplicationchrome.exe 開(kāi)始的進(jìn)程不再運(yùn)行,因此 ChromeD
        <tfoot id='uu0N2'></tfoot>

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

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

                  <tbody id='uu0N2'></tbody>
                <legend id='uu0N2'><style id='uu0N2'><dir id='uu0N2'><q id='uu0N2'></q></dir></style></legend>
                • 本文介紹了從 chrome 位置 C:..ChromeApplicationchrome.exe 開(kāi)始的進(jìn)程不再運(yùn)行,因此 ChromeDriver 假設(shè) Chrome 已崩潰的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                  問(wèn)題描述

                  Chrome 版本:68.0.3440.106
                  Chrome 網(wǎng)絡(luò)驅(qū)動(dòng)程序版本:ChromeDriver 2.41.578737
                  Python版本:Python 3.5.2

                  Chrome version: 68.0.3440.106
                  Chrome webdriver version: ChromeDriver 2.41.578737
                  Python Version : Python 3.5.2

                  我用python寫了這段代碼:

                  I write this code in python:

                  from selenium import webdriver
                  from selenium.webdriver.common.keys import Keys
                  
                  
                  o = webdriver.ChromeOptions()
                  o.add_argument("disable-extensions");
                  o.add_argument("--start-maximized");
                  driver = webdriver.Chrome(executable_path=r"chromedriver.exe",options=o)
                  driver.get("http://www.python.org")
                  assert "Python" in driver.title
                  elem = driver.find_element_by_name("q")
                  elem.clear()
                  elem.send_keys("pycon")
                  elem.send_keys(Keys.RETURN)
                  assert "No results found." not in driver.page_source
                  driver.close()
                  

                  幾秒鐘后,chrome 打開(kāi)并出現(xiàn)此錯(cuò)誤:

                  after few seconds chrome opened with this error:


                  直到我關(guān)閉 chrome 并得到這個(gè)異常,什么都沒(méi)有發(fā)生:


                  and nothing happend till i close chrome and get this exception:

                      Traceback (most recent call last):
                    File ".../game.py", line 8, in <module>
                      driver = webdriver.Chrome(executable_path=r"chromedriver.exe",options=o)
                    File "...PythonPython35-32libsite-packagesseleniumwebdriverchromewebdriver.py", line 75, in __init__
                      desired_capabilities=desired_capabilities)
                    File "...PythonPython35-32libsite-packagesseleniumwebdriver
                  emotewebdriver.py", line 156, in __init__
                      self.start_session(capabilities, browser_profile)
                    File "...PythonPython35-32libsite-packagesseleniumwebdriver
                  emotewebdriver.py", line 251, in start_session
                      response = self.execute(Command.NEW_SESSION, parameters)
                    File "...PythonPython35-32libsite-packagesseleniumwebdriver
                  emotewebdriver.py", line 320, in execute
                      self.error_handler.check_response(response)
                    File "...PythonPython35-32libsite-packagesseleniumwebdriver
                  emoteerrorhandler.py", line 242, in check_response
                      raise exception_class(message, screen, stacktrace)
                  selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited normally
                    (unknown error: unable to discover open pages)
                    (The process started from chrome location C:Program Files (x86)GoogleChromeApplicationchrome.exe is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
                    (Driver info: chromedriver=2.41.578737 (49da6702b16031c40d63e5618de03a32ff6c197e),platform=Windows NT 10.0.17134 x86_64)
                  

                  推薦答案

                  我最近在使用 TeamCity 時(shí)遇到了這個(gè)問(wèn)題,這是由于 chrome(和 chromedriver)在執(zhí)行我的腳本后沒(méi)有關(guān)閉造成的.插入taskkill/f/im chrome.exe"和taskkill/f/im chromedriver.exe"修復(fù)了這個(gè)問(wèn)題.

                  I recently had this issue using TeamCity, which was caused by chrome (and chromedriver) not shutting down after executing my script. inserting "taskkill /f /im chrome.exe" and "taskkill /f /im chromedriver.exe" fixed this issue.

                  這篇關(guān)于從 chrome 位置 C:..ChromeApplicationchrome.exe 開(kāi)始的進(jìn)程不再運(yùn)行,因此 ChromeDriver 假設(shè) Chrome 已崩潰的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關(guān)文檔推薦

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

                        <tbody id='0P6LH'></tbody>

                          <tfoot id='0P6LH'></tfoot>
                        • <small id='0P6LH'></small><noframes id='0P6LH'>

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

                            <bdo id='0P6LH'></bdo><ul id='0P6LH'></ul>
                          • 主站蜘蛛池模板: 干干干日日日 | 夜夜骚| 91麻豆产精品久久久久久夏晴子 | 精品久久久久久 | 欧美日韩精品在线免费观看 | 国产一区二区视频在线观看 | 亚洲国产网站 | 久在线视频播放免费视频 | 欧美在线一区二区三区 | 欧美啪啪网站 | 欧美色综合 | 91久久久久久久久 | 精品国产免费人成在线观看 | 日本免费一区二区三区四区 | 欧美一区二区三区视频 | 91综合网 | 久久人体视频 | 欧美激情一区二区三级高清视频 | 99视频在线免费观看 | 国产1页 | 日韩免费视频一区二区 | 国产综合视频 | 日韩欧美在线一区 | 久久久免费| 成人免费一区二区三区视频网站 | 91精品国产91久久久久久最新 | 4hu最新网址 | 91就要激情 | 精品一区二区三区四区 | 色av一区二区三区 | 亚洲免费人成在线视频观看 | 国产精品揄拍一区二区 | 免费观看一区二区三区毛片 | 欧美日韩在线视频一区二区 | 国产在线精品一区二区三区 | 视频精品一区 | 国产一区亚洲 | 午夜精品导航 | 一区二区精品 | 高清视频一区二区三区 | 免费观看的黄色网址 |