1. 程式人生 > >python自動化指令碼示例3->支付:指令碼報錯session not created exception,出現指令碼只執行一半就卡死情況

python自動化指令碼示例3->支付:指令碼報錯session not created exception,出現指令碼只執行一半就卡死情況

在Chrome下執行指令碼,報錯:

  elenium.common.exceptions.WebDriverException: Message: session not created exception

  from disconnected: received Inspector.detached event
  (Session info: chrome=52.0.2743.6)
  (Driver info: chromedriver=2.16.333243 (0bfa1d3575fc1044244f21ddb82bf870944ef961),platform=Windows NT 6.1 SP1 x86_64)


指令碼:【

# coding=utf-8
from selenium import webdriver
from time import sleep

driver =webdriver.Chrome()
driver.get("https://m.edmbuy.com/")

driver.find_element_by_xpath("/html/body/footer/a[4]").click()
sleep(3)
driver.find_element_by_xpath("//*[@class='peoname']").click()
driver.find_element_by_id("global_frm_mobile"
).send_keys("18124682152")
driver.find_element_by_id("global_frm_passwd").send_keys("123456")
driver.find_element_by_id("login_btn").click()
sleep(3)driver.find_element_by_xpath("//*[@class='boxsiz cart']").click()
driver.find_element_by_xpath("/html/body/div[2]/b").click()
driver.find_element_by_xpath("//*[@id='cart_t_btn']"
).click()
driver.find_element_by_xpath("//*[@id='btn-wxpay']").click()
sleep(3)
driver.close()

程式執行前半步驟都ok,後半步驟不能執行並一直報錯“找不到定位物件或是提示物件定位錯誤的問題”,找了很久都沒發現問題的原因是什麼,後來在步驟中間添加了一個sleep延遲解決了這個問題(程式執行有時候會出現卡機,或者執行被佔用{Ctrl+alt+delete關閉Chromedriver.exe},未完成載入等可能情況,需要做延遲 等待程式完成載入再繼續執行)