Guest User

Untitled

a guest
Dec 14th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. private void choosePlaceForEmployee(String... param) {
  2. str: for (int j = 0; j <= param.length * 2 - 1; j += 2) {
  3. for (int h = 0; h <= param.length - 1; h++) {
  4. ts.makerNewTak().placesForWorker().get(j).click();
  5. ts.makerNewTak().searchForEmployee().sendKeys(param[h]);
  6. ts.makerNewTak().listOfAllPlaces().get(0).click();
  7. continue str ;
  8. }
  9. }
  10. }
Add Comment
Please, Sign In to add comment