Thanks a lot Martin for that super quick reply! Yes, obviously I was wrong on
the AJAX part.

But even if I using the test method like this:
@Test
    public void enterData(){
                
        tester.startPage(MyForm.class);
        FormTester formTester = tester.newFormTester("form");
        formTester.setValue("textfield", "Hello World!");
        formTester.select("dropdown", 1);
        
        formTester.submit();
        
        tester.assertNoErrorMessage();

        tester.assertRenderedPage(HomePage.class);
    }

... I still receive the error. I'd really love to understand what I'm
missing here.

Thanks,
Ralf



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Testing-DropDownChoice-with-Ajax-tp4655418p4655421.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to