我有一个链接列表,它们增加了一个我想采用字符串类型的 xpath 并将其拆分到数字所在的位置,并且每次循环时将该数字更改为一个。
String vPath= "/html/body/section/section[2]/a[1]";
//so the number that's changing is in the last bracket
String[] t = vPath.split("/a");
然后我想使用拆分变量并循环。所以也许使用 for 循环。但是,我似乎对如何做到这一点有疑问。我认为它应该像
For (int i=1; i < t(something here); i++{
then the code of clicking should go here
}
请帮忙。