Created
June 10, 2020 14:19
-
-
Save seleniumgists/ef56493f1df5b514dd279e0e95a78a9b to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for { | |
| elems, err := wd.FindElements(selenium.ByXPATH, "//fuse-splash-screen[contains(@style, 'visibility: hidden')]") | |
| if err != nil { | |
| println(err.Error()) | |
| } | |
| if len(elems) == 1 { | |
| break | |
| } | |
| time.Sleep(1 * time.Second) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment