gpt4 book ai didi

java - hdfc 网上银行页面中客户 ID 的 xpath [Selenium Webdriver] [JAVA]

转载 作者:行者123 更新时间:2023-11-29 03:00:24 25 4
gpt4 key购买 nike

我正在尝试为以下网站的客户 ID 查找 xpath-

https://netbanking.hdfcbank.com/netbanking/?_ga=1.219943581.521154242.1455311784

我尝试了各种 XPath,例如 -

1.//输入[@class='input_password']2.html/body/form/table[2]/tbody/tr/td[2]/table/tbody/tr[1]/td[1]/table/tbody/tr[3]/td[2]/表/tbody/tr[2]/td[2]/跨度/输入

但它们似乎都不起作用。我正在使用 selenium webDriver 来发送 key 对于例如“123456”到该客户 ID 框,然后点击继续按钮。但是 Selenium 并不是每次都能找到元素。有人可以帮我解决这个问题吗?

最佳答案

文本框在框架内,需要先切换到它

// switch to the frame
driver.switchTo().frame("login_page");

// find the text box and write to it
driver.findElement(By.className("input_password")).sendKeys("123456");

// switch back to main window
driver.switchTo().defaultContent();

关于java - hdfc 网上银行页面中客户 ID 的 xpath [Selenium Webdriver] [JAVA],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35383342/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com