gpt4 book ai didi

java - Selenium Java Webdriver : Adding a string to an Xpath

转载 作者:行者123 更新时间:2023-12-01 13:18:51 25 4
gpt4 key购买 nike

我有以下 Java 片段,我想在语句中添加一个字符串内部:

     @and ("^I want to change fieldnumber \"([^\"]*)\" , remove whats inside and add the following text: \"([^\"]*)\"$")

public void testscenario12345(String number, String text) throws Throwable {
driver.findElement(By.xpath("//*[contains(@name,'template:view:<INSERT NUMBER STRING HERE>:item:view:1:item:')]")).clear();
driver.findElement(By.xpath("//*[contains(@name,'template:view:<INSERT NUMBER STRING HERE>:item:view:1:item:')]")).sendKeys(text);

如何在上面的代码中添加数字字符串?澄清一下,如果我在 cucumber 中插入“4”,我希望驱动程序通过 Xpath 找到该元素,其中 @name 包含 template:view:4:item:view:1:item:

最佳答案

怎么样

driver.findElement(By.xpath("//*[contains(@name,\"template:view:" + number+ ":item:view:1:item:\")]")).clear();

您可能需要该数字是常量,这意味着:

public void testscenario12345(final String number,  String text) throws Throwable {

关于java - Selenium Java Webdriver : Adding a string to an Xpath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22220036/

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