chromedp.Navigate(tragetUrl),
chromedp.WaitVisible("#button"),
chromedp.Click("#button"),
Goal: if #button is not exist then reload the current page until button appear and click it
The #button appears at random times and depending on the target website.
Is any good suggestions to achieve above goal?