ケロドンで clojure luminus/selmer アプリケーションをテストしています。次のように入力フィールドにjava.lang.IllegalArgumentException: field could not be found with selector "[:#name]"
アクセスしようとするとid=name
、次のようになります。
(deftest home
(-> (session app)
(visit "/")
(fill-in [:#name] "Peter")
(fill-in [:#age] "25")
(press "Sign up!")
(within [:h1]
(has (text? "Hello Peter 25")))))