Here you can find the source of sleepAfterListItems()
private static void sleepAfterListItems()
//package com.java2s; //License from project: Apache License public class Main { private static void sleepAfterListItems() { try {/*www . j a v a 2 s .c om*/ Thread.sleep(2000); } catch (InterruptedException e1) { e1.printStackTrace(); } } }