我需要一些帮助来使用 CSS 或 HTML 中的 Xpath 来识别按钮
I need some help in identifying button using CSS or Xpath from the HTML
我正在使用 Webdriver 和 Python 自动化我们的网站。我在识别和单击“管理”按钮时遇到问题。我试图切换到 iFrame 和 select 按钮。它找不到按钮。
我已经和开发人员谈过,开发人员说它不在 iFrame 中。 GUI 在 GWT 中完成。
我只需要计算出 CSS 或 XPath,这样我就可以单击按钮了。
CSS 会更好,因为它比 XPath 更快。
我尝试了以下 XPath:
//div[@class="gwt-TabLayoutPanelTabs"]/div[last()]
当我在 Selenium IDE 中使用“查找”按钮对其进行测试时,它会突出显示按钮的背景色。
有人知道 CSS 或绝对 XPath 吗?
HTML如下(Administration是最下面的div):
<html style="overflow: hidden;">
<head>
<body style="margin: 0px;">
<iframe id="__gwt_historyFrame" style="position: absolute; width: 0; height: 0; border: 0;" tabindex="-1" src="javascript:''">
<html>
<head>
</head>
<body>
</html>
</iframe>
<noscript> <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif;"> Your web browser must have JavaScript enabled in order for this application to display correctly.</div> </noscript>
<script src="spinner.js" type="text/javascript">
<script type="text/javascript">
<script src="ClearCore/ClearCore.nocache.js" type="text/javascript">
<script defer="defer">
<iframe id="ClearCore" src="javascript:''" style="position: absolute; width: 0px; height: 0px; border: medium none;" tabindex="-1">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
<script type="text/javascript">
<script type="text/javascript">
</head>
<body>
</html>
</iframe>
<div style="position: absolute; z-index: -32767; top: -20cm; width: 10cm; height: 10cm; visibility: hidden;" aria-hidden="true"> </div>
<div style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex; visibility: hidden;" aria-hidden="true"> </div>
<div style="position: absolute; overflow: hidden; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex; visibility: hidden;" aria-hidden="true"> </div>
<div style="position: absolute; overflow: hidden; left: 1px; top: 1px; right: 1px; bottom: 1px;">
<div class="gwt-TabLayoutPanel" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex; visibility: hidden;" aria-hidden="true"> </div>
<div style="position: absolute; overflow: hidden; left: 0px; top: 0px; right: 0px; height: 30px;">
<div class="gwt-TabLayoutPanelTabs" style="position: absolute; left: 0px; right: 0px; bottom: 0px; width: 16384px;">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK gwt-TabLayoutPanelTab-selected" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTabInner">
<div class="gwt-HTML">Administration</div>
</div>
</div>
我的管理员按钮代码:
adminButton = mydriver.find_element_by_xpath('//div[@class="gwt- TabLayoutPanelTabs"]/div[last()]')
adminButton.click()
我也试过:
mydriver.find_element_by_xpath('//div[7]/div/div').click()
您需要一个一个地找到nested iframe
s and switch to them,然后才能在里面找到一个元素:
driver.switch_to.frame("__gwt_historyFrame")
driver.switch_to.frame("ClearCore")
administration = driver.find_element_by_xpath("//div[. = 'Administration']")
administration.click()
请注意,我是按文本定位元素的,我认为这样更 "natural" 和合乎逻辑。
如果 "Administration" link 不在 iframe
内,则省略两行 "switch_to"。
您可能还需要 wait for the element to become clickable:
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
administration = WebDriverWait(driver, 10).until(
EC.element_to_be_clickable((By.XPATH, "//div[. = 'Administration']"))
)
administration.click()
我终于解决了我的问题。开发人员说我必须等待页面完全加载完成。当所有元素都显示在屏幕上时,页面仍在加载 JavaScript 功能。
我首先尝试 time.sleep(30) 然后点击按钮。有效。每次等待 30 秒效率不高。然后我使用了 WebDriverWait,这样效率更高。
这是我使用的代码:
WebDriverWait(mydriver, 10).until(lambda d: mydriver.find_element_by_xpath("//div[. = 'Administration']").click())
我正在使用 Webdriver 和 Python 自动化我们的网站。我在识别和单击“管理”按钮时遇到问题。我试图切换到 iFrame 和 select 按钮。它找不到按钮。
我已经和开发人员谈过,开发人员说它不在 iFrame 中。 GUI 在 GWT 中完成。
我只需要计算出 CSS 或 XPath,这样我就可以单击按钮了。
CSS 会更好,因为它比 XPath 更快。
我尝试了以下 XPath: //div[@class="gwt-TabLayoutPanelTabs"]/div[last()]
当我在 Selenium IDE 中使用“查找”按钮对其进行测试时,它会突出显示按钮的背景色。
有人知道 CSS 或绝对 XPath 吗?
HTML如下(Administration是最下面的div):
<html style="overflow: hidden;">
<head>
<body style="margin: 0px;">
<iframe id="__gwt_historyFrame" style="position: absolute; width: 0; height: 0; border: 0;" tabindex="-1" src="javascript:''">
<html>
<head>
</head>
<body>
</html>
</iframe>
<noscript> <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif;"> Your web browser must have JavaScript enabled in order for this application to display correctly.</div> </noscript>
<script src="spinner.js" type="text/javascript">
<script type="text/javascript">
<script src="ClearCore/ClearCore.nocache.js" type="text/javascript">
<script defer="defer">
<iframe id="ClearCore" src="javascript:''" style="position: absolute; width: 0px; height: 0px; border: medium none;" tabindex="-1">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
<script type="text/javascript">
<script type="text/javascript">
</head>
<body>
</html>
</iframe>
<div style="position: absolute; z-index: -32767; top: -20cm; width: 10cm; height: 10cm; visibility: hidden;" aria-hidden="true"> </div>
<div style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex; visibility: hidden;" aria-hidden="true"> </div>
<div style="position: absolute; overflow: hidden; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex; visibility: hidden;" aria-hidden="true"> </div>
<div style="position: absolute; overflow: hidden; left: 1px; top: 1px; right: 1px; bottom: 1px;">
<div class="gwt-TabLayoutPanel" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;">
<div style="position: absolute; z-index: -32767; top: -20ex; width: 10em; height: 10ex; visibility: hidden;" aria-hidden="true"> </div>
<div style="position: absolute; overflow: hidden; left: 0px; top: 0px; right: 0px; height: 30px;">
<div class="gwt-TabLayoutPanelTabs" style="position: absolute; left: 0px; right: 0px; bottom: 0px; width: 16384px;">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK gwt-TabLayoutPanelTab-selected" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTab GEGQEWXCK" style="background-color: rgb(254, 255, 238);">
<div class="gwt-TabLayoutPanelTabInner">
<div class="gwt-HTML">Administration</div>
</div>
</div>
我的管理员按钮代码:
adminButton = mydriver.find_element_by_xpath('//div[@class="gwt- TabLayoutPanelTabs"]/div[last()]')
adminButton.click()
我也试过:
mydriver.find_element_by_xpath('//div[7]/div/div').click()
您需要一个一个地找到nested iframe
s and switch to them,然后才能在里面找到一个元素:
driver.switch_to.frame("__gwt_historyFrame")
driver.switch_to.frame("ClearCore")
administration = driver.find_element_by_xpath("//div[. = 'Administration']")
administration.click()
请注意,我是按文本定位元素的,我认为这样更 "natural" 和合乎逻辑。
如果 "Administration" link 不在 iframe
内,则省略两行 "switch_to"。
您可能还需要 wait for the element to become clickable:
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
administration = WebDriverWait(driver, 10).until(
EC.element_to_be_clickable((By.XPATH, "//div[. = 'Administration']"))
)
administration.click()
我终于解决了我的问题。开发人员说我必须等待页面完全加载完成。当所有元素都显示在屏幕上时,页面仍在加载 JavaScript 功能。
我首先尝试 time.sleep(30) 然后点击按钮。有效。每次等待 30 秒效率不高。然后我使用了 WebDriverWait,这样效率更高。
这是我使用的代码:
WebDriverWait(mydriver, 10).until(lambda d: mydriver.find_element_by_xpath("//div[. = 'Administration']").click())