I try to write selenium tests for a web site.
I used a tomcat server with a MemoryRealm authentication cf
<Realm className="org.apache.catalina.realm.MemoryRealm" pathname="/DEV/tomcat1/conf/tomcat-users.xml"/>
I didn't find how to set authentication in my tests. I tried to put in "selenium.open"
selenium.open("http://user:pass@myserver:8080/index.jsp");
Selenium launch the server, open the web site, bu stay on auth without fill the user/pass form.
Is it just not possible and i have to change tomcat auth, or i juste miss something ?