Skip to content

Instantly share code, notes, and snippets.

@semperos
Created October 25, 2011 03:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save semperos/1311216 to your computer and use it in GitHub Desktop.
Save semperos/1311216 to your computer and use it in GitHub Desktop.
Simple record
(ns clj-webdriver.window-handle)
(defrecord WindowHandle [driver handle title url])
(defn init-window-handle
[driver handle title url]
(WindowHandle. driver handle title url))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment