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

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

          <bdo id='8kms8'></bdo><ul id='8kms8'></ul>

        <small id='8kms8'></small><noframes id='8kms8'>

      1. javascript 錯(cuò)誤:無法在“文檔"上執(zhí)行“element

        javascript error: Failed to execute #39;elementsFromPoint#39; on #39;Document#39;: The provided double value is non-finite(javascript 錯(cuò)誤:無法在“文檔上執(zhí)行“elementsFromPoint:提供的雙精度值是非有限的) - IT屋-程序員

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

              <tbody id='KtzlH'></tbody>

                  本文介紹了javascript 錯(cuò)誤:無法在“文檔"上執(zhí)行“elementsFromPoint":提供的雙精度值是非有限的的處理方法,對大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  我最近將我的 chrome 版本更新到最新版本,即 79.0.3945.130 (Official Build) (64-bit) 并從

                  我正在使用下面的代碼來選擇一個(gè)值

                  Select s = new Select(getDriver().findElement(By.id("attribute178")));s.selectByIndex(1);

                  錯(cuò)誤堆棧跟蹤

                  <塊引用>

                  Javascript 錯(cuò)誤:無法在文檔"上執(zhí)行elementsFromPoint":提供的雙精度值是無限的.(會(huì)話信息:chrome=79.0.3945.130)構(gòu)建信息:版本:'3.13.0',修訂:'2f0d292',時(shí)間:'2018-06-25T15:24:21.231Z' 系統(tǒng)信息:主機(jī):'ispl_723.test.com', ip: 'fe80:0:0:0:419:64fe:5dea:dae5%en0',os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.14.6',java.version: '1.8.0_191' 驅(qū)動(dòng)信息:com.qmetry.qaf.automation.ui.webdriver.QAFExtendedWebDriver功能 {acceptInsecureCerts: false, browserName: chrome,瀏覽器版本:79.0.3945.130,鉻:{chromedriverVersion:79.0.3945.36 (3582db32b3389..., userDataDir:/var/folders/qf/x6bn9cgj1rx...}, goog:chromeOptions: {debuggerAddress:本地主機(jī):61452},javascriptEnabled:真,networkConnectionEnabled:假,pageLoadStrategy:正常,平臺(tái):MAC,平臺(tái)名稱:MAC,代理:代理(),setWindowRect:真,strictFileInteractability:假,超時(shí):{隱式:0,pageLoad:300000,腳本:30000},unhandledPromptBehavior:關(guān)閉并通知}

                  之前我使用的是 Chrome 75,一切正常.有沒有人遇到過這個(gè)問題?已在 SO 上發(fā)布與此錯(cuò)誤相關(guān)的問題沒有幫助.

                  解決方案

                  在我的例子中,我在每個(gè)命令監(jiān)聽器中使用 new Actions(driver).moveToElement(element).perform();命令,因此它將焦點(diǎn)移到正在執(zhí)行的元素上.

                  這一行導(dǎo)致了上述錯(cuò)誤.對此發(fā)表評論后,它的工作正常.

                  I recently updated my chrome version to latest i.e. 79.0.3945.130 (Official Build) (64-bit) and downloaded compatible chromedriver from here

                  I've started facing this error. While debugging in detail i found that the Select class causing the issue. wherever I'm selecting a dropdown in my code I'm getting this issue.

                  The HTML of dropdown looks like below snippet:

                  <div class="rd-input--wrapper" id="178">
                      <label for="attribute178">Flavour</label>
                      <select name="super_attribute[178]" data-selector="super_attribute[178]" data-validate="{required:true}" id="attribute178" class="super-attribute-select">
                          <option value="">Select</option>
                          <option value="27">Chocolate</option>
                          <option value="28">Strawberry</option>
                      </select>
                  </div>

                  And dropdown on Webpage:

                  I'm using below code to select a value

                  Select s = new Select(getDriver().findElement(By.id("attribute178")));
                  s.selectByIndex(1);
                  

                  Error stacktrace

                  Javascript error: Failed to execute 'elementsFromPoint' on 'Document': The provided double value is non-finite. (Session info: chrome=79.0.3945.130) Build info: version: '3.13.0', revision: '2f0d292', time: '2018-06-25T15:24:21.231Z' System info: host: 'ispl_723.test.com', ip: 'fe80:0:0:0:419:64fe:5dea:dae5%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.14.6', java.version: '1.8.0_191' Driver info: com.qmetry.qaf.automation.ui.webdriver.QAFExtendedWebDriver Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 79.0.3945.130, chrome: {chromedriverVersion: 79.0.3945.36 (3582db32b3389..., userDataDir: /var/folders/qf/x6bn9cgj1rx...}, goog:chromeOptions: {debuggerAddress: localhost:61452}, javascriptEnabled: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: MAC, platformName: MAC, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}

                  Earlier I was using Chrome 75 and everything was working as expected. Has anyone faced this issue? Already posted question related to this error on SO is not helpful.

                  解決方案

                  In my case i was using new Actions(driver).moveToElement(element).perform(); in Command Listener before each command so it move the focus on element which being executed.

                  This line causing the error mentioned in question. After commenting this its working fine.

                  這篇關(guān)于javascript 錯(cuò)誤:無法在“文檔"上執(zhí)行“elementsFromPoint":提供的雙精度值是非有限的的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關(guān)文檔推薦

                  How can I detect integer overflow on 32 bits int?(如何檢測 32 位 int 上的整數(shù)溢出?)
                  Local variables before return statements, does it matter?(return 語句之前的局部變量,這有關(guān)系嗎?)
                  How to convert Integer to int?(如何將整數(shù)轉(zhuǎn)換為整數(shù)?)
                  How do I create an int array with randomly shuffled numbers in a given range(如何在給定范圍內(nèi)創(chuàng)建一個(gè)隨機(jī)打亂數(shù)字的 int 數(shù)組)
                  Inconsistent behavior on java#39;s ==(java的行為不一致==)
                  Why is Java able to store 0xff000000 as an int?(為什么 Java 能夠?qū)?0xff000000 存儲(chǔ)為 int?)

                    <bdo id='OEzFl'></bdo><ul id='OEzFl'></ul>
                        1. <small id='OEzFl'></small><noframes id='OEzFl'>

                          <legend id='OEzFl'><style id='OEzFl'><dir id='OEzFl'><q id='OEzFl'></q></dir></style></legend>

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

                            主站蜘蛛池模板: 国产精彩视频一区 | 欧美日韩一区二区视频在线观看 | 欧美一级免费黄色片 | 91视频电影| 欧美精品影院 | 国产精品视频久久久久 | 亚洲激情视频在线 | 成人中文字幕av | 一区| 女女百合av大片一区二区三区九县 | 欧美一区二 | 国产农村妇女毛片精品久久麻豆 | 中文字幕一区二区三区不卡 | 国产精品久久久久久网站 | 国产成人精品免费视频大全最热 | 黄色在线免费观看视频网站 | 天天影视色综合 | 一级在线 | 亚洲一区二区欧美 | 激情综合五月天 | 精品少妇一区二区三区日产乱码 | 久久成人精品视频 | 欧美日韩在线免费 | 91日b| 久久综合九色综合欧美狠狠 | 久久久www成人免费精品张筱雨 | 日本一本视频 | 日日综合 | 免费在线观看成年人视频 | 国产精品黄色 | 国产资源在线视频 | 亚洲国产成人精品女人久久久 | 羞羞的视频免费看 | 精品国产乱码久久久久久丨区2区 | 久久国产精品-国产精品 | 高清色| 国产999在线观看 | 久久国产精品72免费观看 | 欧美在线日韩 | 日韩一二三区视频 | av香港经典三级级 在线 |