Package com.googlecode.jmeter.plugins.webdriver.config

Examples of com.googlecode.jmeter.plugins.webdriver.config.WebDriverConfig


    }

    @Test
    public void shouldCreateManualProxy() {
        gui.manualProxy.setSelected(true);
        final WebDriverConfig testElement = (WebDriverConfig) gui.createTestElement();
        assertThat(testElement.getProxyType(), is(ProxyType.MANUAL));
    }
View Full Code Here


    }

    @Test
    public void shouldCreateProxyPacProxy() {
        gui.pacUrlProxy.setSelected(true);
        final WebDriverConfig testElement = (WebDriverConfig) gui.createTestElement();
        assertThat(testElement.getProxyType(), is(ProxyType.PROXY_PAC));
    }
View Full Code Here

    }

    @Test
    public void shouldCreateAutoDectetProxy() {
        gui.autoDetectProxy.setSelected(true);
        final WebDriverConfig testElement = (WebDriverConfig) gui.createTestElement();
        assertThat(testElement.getProxyType(), is(ProxyType.AUTO_DETECT));
    }
View Full Code Here

    }

    @Test
    public void shouldSetPacUrl() {
        gui.pacUrl.setText("http://pac.url");
        final WebDriverConfig testElement = (WebDriverConfig) gui.createTestElement();
        assertThat(testElement.getProxyPacUrl(), is("http://pac.url"));
    }
View Full Code Here

TOP

Related Classes of com.googlecode.jmeter.plugins.webdriver.config.WebDriverConfig

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.