i have created a session and follow the session the same page/// after i started for
testing it doesn't shows any elements all telling not found.. if i remove the session values it is working fine..
WebConversation con = new WebConversation();
WebRequest req = new GetMethodWebRequest("http://127.0.0.1:8084/Project/update.jsp");
WebResponse res = con.getResource(req);
WebForm form1 = res.getFormWithName("Udpate");
System.out.println(form1);
assertNotNull("No name Like Udpate ", form1);
form1.setAttribute("storeid", "101");
SubmitButton sb = form1.getSubmitButton("ubutton");
System.out.println(sb);