Skip to content

Instantly share code, notes, and snippets.

@seleniumgists
Created June 10, 2020 14:19
Show Gist options
  • Select an option

  • Save seleniumgists/ef56493f1df5b514dd279e0e95a78a9b to your computer and use it in GitHub Desktop.

Select an option

Save seleniumgists/ef56493f1df5b514dd279e0e95a78a9b to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
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