簡體   English   中英

Python + Selenium + PhantomJS腳本中的Javascript警報

[英]Javascript alerts in Python + Selenium + PhantomJS script

我嘗試使用Python腳本“點擊”用於DSL調制解調器中的重新啟動確認的Javascript警報,如下所示:

#!/usr/bin/env python

import selenium
import time
from selenium import webdriver

cap = {u'acceptSslCerts': True,
u'applicationCacheEnabled': True,
u'browserConnectionEnabled': True,
u'browserName': u'phantomjs',
u'cssSelectorsEnabled': True,
u'databaseEnabled': False,
u'driverName': u'ghostdriver',
u'driverVersion': u'1.1.0',
u'handlesAlerts': True,
u'javascriptEnabled': True,
u'locationContextEnabled': False,
u'nativeEvents': True,
u'platform': u'linux-unknown-64bit',
u'proxy': {u'proxyType': u'direct'},
u'rotatable': False,
u'takesScreenshot': True,
u'version': u'1.9.8',
u'webStorageEnabled': False}


driver = webdriver.PhantomJS('/usr/lib/node_modules/phantomjs/bin/phantomjs', desired_capabilities=cap)
driver.get('http://username:passwd@192.168.1.254')
sbtn = driver.find_element_by_id('reboto_btn')
sbtn.click()
time.sleep(4)
al = driver.switch_to_alert()

print al.accept()

但是,即使我在desired_capabilities設置handlesAlerts ,我handlesAlerts在下面粘貼異常。

我該如何解決這個問題? 異常的原因是什么?

例外:

---------------------------------------------------------------------------
WebDriverException                        Traceback (most recent call last)
/usr/local/bin/pjs/asus_reboot.py in <module>()
36 #ipdb.set_trace()
37 
---> 38 print al.accept()
39 
40 #print al.text

/usr/local/venvs/asusreboot/local/lib/python2.7/site-packages/selenium/webdriver/common/alert.pyc in accept(self)
76         Alert(driver).accept() # Confirm a alert dialog.
77         """
---> 78         self.driver.execute(Command.ACCEPT_ALERT)
79 
80     def send_keys(self, keysToSend):

/usr/local/venvs/asusreboot/local/lib/python2.7/site-packages/selenium/webdriver/remote/webdriver.pyc in execute(self, driver_command, params)
173         response = self.command_executor.execute(driver_command, params)
174         if response:
--> 175             self.error_handler.check_response(response)
176             response['value'] = self._unwrap_value(
177                 response.get('value', None))

/usr/local/venvs/asusreboot/local/lib/python2.7/site-packages/selenium/webdriver/remote/errorhandler.pyc in check_response(self, response)
134             if exception_class == ErrorInResponseException:
135                 raise exception_class(response, value)
--> 136             raise exception_class(value)
137         message = ''
138         if 'message' in value:

WebDriverException: Message: Invalid Command Method - {"headers":{"Accept":"application/json","Accept-Encoding":"identity","Connection":"close","Content-Length":"53","Content-Type":"application/json;charset=UTF-8","Host":"127.0.0.1:36590","User-Agent":"Python-urllib/2.7"},"httpVersion":"1.1","method":"POST","post":"{\"sessionId\": \"fc97c240-f098-11e4-ae53-e17f38effd6c\"}","url":"/accept_alert","urlParsed":{"anchor":"","query":"","file":"accept_alert","directory":"/","path":"/accept_alert","relative":"/accept_alert","port":"","host":"","password":"","user":"","userInfo":"","authority":"","protocol":"","source":"/accept_alert","queryKey":{},"chunks":["accept_alert"]},"urlOriginal":"/session/fc97cea0-f098-11e4-ae53-e17f38eaad6c/accept_alert"}

由於PhantomJs不支持Alert框。你需要使用執行程序。

driver.execute_script("window.confirm = function(msg) { return true; }");

在java中,driver.switchTo()。alert()。accept(); 會做的。

我不確定,為什么你使用“print al.accept()”,你可能正在嘗試打印文本? 然后alert.getText()將在java中做,抱歉,如果我錯了,因為我確信在python中。

謝謝你,Murali http://seleniumtrainer.com/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM