Hello,
I am trying to use a java library (
http://code.google.com/p/webdriver/
), the method I need to call has signature:
sendKeys(java.lang.CharSequence... keysToSend)
If I give it a clojure string, the "cannot be cast" message appears in
the stack trace.
I have tried explicit (cast java.lang.CharSequence "my-string") but
the cast does only "compare" AFAIK.
Is there a way to give the library what it wants from Clojure?
Kind regards,
Vlad