Package net.mindengine.galen.suite.actions

Examples of net.mindengine.galen.suite.actions.GalenPageActionCookie


    public static GalenPageAction resize(int width, int height) {
        return new GalenPageActionResize(width, height);
    }

    public static GalenPageAction cookie(String cookie) {
        return new GalenPageActionCookie().withCookies(cookie);
    }
View Full Code Here


public class GalenPageActionCookieTest {

    @Test public void shouldSetCookie_andRefreshPage() throws Exception {
        MockedBrowser browser = new MockedBrowser("", new Dimension(1024, 768));
       
        GalenPageActionCookie action = new GalenPageActionCookie();
       
        action.setCookies(Arrays.asList("cookieName1=cookieValue1; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/", "cookieName2=cookieValue2; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/"));
        action.execute(new TestReport(), browser, new GalenPageTest(), null);
       
        List<String> recordedActions = browser.getRecordedActions();
       
        assertThat(recordedActions, contains("executeJavascript\ndocument.cookie=\"cookieName1=cookieValue1; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/\";" +
                                                            "document.cookie=\"cookieName2=cookieValue2; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=/\";",
View Full Code Here

TOP

Related Classes of net.mindengine.galen.suite.actions.GalenPageActionCookie

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.