gpt4 book ai didi

selenium - 如何使用 Java 在 Selenium Web 驱动程序中输入类型 =Button 时单击按钮

转载 作者:行者123 更新时间:2023-12-05 07:47:43 25 4
gpt4 key购买 nike

当输入类型为 button 时如何点击按钮,我使用下面的代码,点击按钮有效但数据未保存。

driver.findElement(By.cssSelector("input[type='button'][value='Save']")).click();
driver.findElement(By.cssSelector("input[@type='button'][@value='Save']")).click();
driver.findElement(By.cssSelector("input[@type='button']")).click();

下面是开发代码供大家引用:

<input id="save_btn_expe" class="edit_forms_save_btn" type="button" value="Save"> 

最佳答案

WebElement setElement = driver.findElement(By.id("save_btn_expe"));
JavascriptExecutor js = (JavascriptExecutor) driver;
js.executeScript("arguments[0].click()", setElement);

driver.findElement(By.id("save_btn_expe")).click();

driver.findElement(By.xpath("//input[@id='save_btn_expe']")).click();

关于selenium - 如何使用 Java 在 Selenium Web 驱动程序中输入类型 =Button 时单击按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39390038/

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