int i = 0; Boolean stillHaveSomethingToSearch = true; Boolean foundit = false; while (stillHaveSomethingToSearch){ idConstructor = "mainForm:aucPanelId:0:listOfAuctions:"+i; try{ auctionRow = driver.findElement(By.id(idConstructor)); } catch (NoSuchElementException e){ stillHaveSomethingT...
A common misunderstanding is to mistake immediate mode gui for immediate mode rendering, which usually implies hammering your driver/GPU with a bunch of inefficient draw calls and state changes as the gui functions are called. This is NOT what Dear ImGui does. Dear ImGui outputs vertex buffers...