jdave.webdriver.testapplication.WebDriverTestPage.java Source code

Java tutorial

Introduction

Here is the source code for jdave.webdriver.testapplication.WebDriverTestPage.java

Source

/*
 * Copyright 2008 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package jdave.webdriver.testapplication;

import java.util.ArrayList;
import java.util.List;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.form.OnChangeAjaxBehavior;
import org.apache.wicket.ajax.markup.html.AjaxFallbackLink;
import org.apache.wicket.ajax.markup.html.form.AjaxCheckBox;
import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.form.DropDownChoice;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.markup.html.link.Link;
import org.apache.wicket.markup.html.link.PopupSettings;
import org.apache.wicket.model.Model;

/**
 * @author Marko Sibakov
 * @author Juha Karemo
 */
public class WebDriverTestPage extends WebPage {
    public WebDriverTestPage() {
        final Label label = new Label("testLabel", new Model<String>("test label"));
        label.setOutputMarkupId(true);
        add(label);
        add(new AjaxFallbackLink<Void>("testLink") {
            @Override
            public void onClick(AjaxRequestTarget target) {
                label.setDefaultModelObject("link clicked");
                target.addComponent(label);
            }
        });
        add(new AjaxFallbackLink<Void>("testLink2") {
            @Override
            public void onClick(AjaxRequestTarget target) {
            }
        });
        TextField<String> textField = new TextField<String>("testTextField", new Model<String>());
        add(textField);
        textField.add(new OnChangeAjaxBehavior() {
            @Override
            protected void onUpdate(AjaxRequestTarget target) {
                label.setDefaultModelObject(getDefaultModelObject());
                target.addComponent(label);
            }
        });
        add(new AjaxCheckBox("testCheckBox", new Model<Boolean>(false)) {
            @Override
            protected void onUpdate(AjaxRequestTarget target) {
                label.setDefaultModelObject("checkbox clicked");
                target.addComponent(label);
            }
        });

        add(TestDropDownChoice.getDropDownChoice());
        Link<Void> openLink = new Link<Void>("openChildPageLink") {
            @Override
            public void onClick() {
                setResponsePage(new ChildPage());
            }
        };
        final PopupSettings popupSettings = new PopupSettings(PopupSettings.SCROLLBARS).setWidth(1045)
                .setHeight(900).setWindowName("childPage");
        openLink.setPopupSettings(popupSettings);
        add(openLink);
    }

    static class TestDropDownChoice {
        public static DropDownChoice<String> getDropDownChoice() {
            List<String> choices = new ArrayList<String>();
            choices.add("and");
            choices.add("not");
            final String or = "or";
            choices.add(or);
            Model<String> model = new Model<String>() {
                @Override
                public String getObject() {
                    return or;
                }
            };
            return new DropDownChoice<String>("connective", model, choices);
        }
    }
}