在 Python 中使用 Selenium 执行 JavaScript
在提供的代码片段中,目标是在 Python 中使用 Selenium 执行特定的 JavaScript 片段。该代码片段旨在通过与 Web 应用程序交互来自动化工作流程。但是,尝试使用 selenium.GetEval 执行 JavaScript 失败,并出现 AttributeError。
解决方案:
使用 Python 在 Selenium 中执行 JavaScript 的正确方法是 browser.execute_script ()。要解决此问题,请将 selenium.GetEval() 替换为 browser.execute_script()。
修订代码:
<code class="python"># Import necessary modules from selenium import webdriver from selenium.webdriver.common.keys import Keys import time # Get user inputs patch = input("Enter patch number\n") rel = input("Enter release\n") plat = input("Enter port\n") # Launch Firefox browser browser = webdriver.Firefox() # Navigate to the target web page browser.get("xxxxxxxxxxxxxxxxx") # Find and populate various input fields pdtfamily = browser.find_element_by_id("prodFamilyID") pdtfamily.send_keys("Database & Tools" + Keys.TAB) time.sleep(5) pdt = browser.find_element_by_id("productID") pdt.send_keys("Intelligent Agent" + Keys.TAB) time.sleep(5) pdt1 = browser.find_element_by_id("patchCacheChkBxID") pdt1.send_keys(Keys.SPACE) time.sleep(5) pdt7 = browser.find_element_by_id("M__Idf") pdt7.send_keys(plat) pdt8 = browser.find_element_by_id("M__Idg") pdt8.send_keys("American English") # Execute the desired JavaScript code browser.execute_script("submitForm('patchCacheAdd',1,{'event':'ok'});return false;") # Close the browser browser.close()</code>
通过使用 browser.execute_script(), JavaScript 代码“submitForm('patchCacheAdd',1,{'event':'ok'});return false;”可以在Python编写的Selenium脚本中成功执行。
以上是如何使用 Python 在 Selenium 中执行 JavaScript 代码?的详细内容。更多信息请关注PHP中文网其他相关文章!