Implicit wait tells webdriver to poll the DOM for a certain amount of time when trying to find an element or elements if they are not immediately available. It won’t be helpful for current scenario.
You can use Thread.sleep or TimeUnit.sleep like
try {
TimeUnit.MINUTES.sleep(30);
} catch (InterruptedException e) {
//Handle exception
}