本文介紹了如何在Java中中斷if循環(huán)的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我嘗試在單擊某個元素后放置分隔符,但在單擊該元素后,它嘗試再次迭代
for (int i = 1; i < tableSize; i++) {
final List<WebElement> columnElements = tableRows.get(i).findElements(By.tagName("td"));
for(WebElement columnElement : columnElements) {
if(columnElement.getText().equalsIgnoreCase(alias)) {
findElement(By.xpath(button.replace("{rowValue}", String.valueOf(i)))).click();
findElement(By.xpath(("http://tr[{rowValue}]" + text).replace("{rowValue}", String.valueOf(i)))).click();
break;
}
}
}
推薦答案
當(dāng)您像您所擁有的那樣編寫break
時,您只是中斷了最本地的循環(huán)(在本例中是for(WebElement columnElement : columnElements)
):
如果您為外部循環(huán)設(shè)置循環(huán)名稱,如下所示
loopName:
for (int i = 1; i < tableSize; i++) {
....
然后您可以將其拆分,如以下代碼所示:
loopName:
for (int i = 1; i < tableSize; i++) {
final List<WebElement> columnElements = tableRows.get(i).findElements(By.tagName("td"));
for(WebElement columnElement : columnElements) {
if(columnElement.getText().equalsIgnoreCase(alias)) {
findElement(By.xpath(button.replace("{rowValue}", String.valueOf(i)))).click();
findElement(By.xpath(("http://tr[{rowValue}]" + text).replace("{rowValue}", String.valueOf(i)))).click();
break loopName;
}
}
}
這將使您擺脫這兩個循環(huán),這似乎就是您所要求的。
這篇關(guān)于如何在Java中中斷if循環(huán)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,