本文整理了Java中org.openqa.selenium.Proxy.setHttpProxy()
方法的一些代码示例,展示了Proxy.setHttpProxy()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Proxy.setHttpProxy()
方法的具体详情如下:
包路径:org.openqa.selenium.Proxy
类名称:Proxy
方法名:setHttpProxy
[英]Specify which proxy to use for HTTP connections.
[中]指定用于HTTP连接的代理。
代码示例来源:origin: org.jspringbot/jspringbot-selenium
public void setHttpProxy(String proxyHost) {
if (!StringUtils.equalsIgnoreCase(proxyHost, "none")) {
proxy = new Proxy();
proxy.setHttpProxy(proxyHost);
capabilities.setCapability(CapabilityType.PROXY, proxy);
}
}
代码示例来源:origin: alfa-laboratory/akita
/**
* Создает настойки прокси для запуска драйвера
*/
@Before(order = 1)
public void setDriverProxy() {
if (!Strings.isNullOrEmpty(System.getProperty("proxy"))) {
Proxy proxy = new Proxy().setHttpProxy(System.getProperty("proxy"));
setProxy(proxy);
log.info("Проставлена прокси: " + proxy);
}
}
代码示例来源:origin: net.lightbody.bmp/browsermob-core
/**
* Creates a Selenium Proxy object using the specified connectableAddressAndPort as the HTTP proxy server.
*
* @param connectableAddressAndPort the network address (or hostname) and port the Selenium Proxy will use to reach its
* proxy server (the InetSocketAddress may be unresolved).
* @return a Selenium Proxy instance, configured to use the specified address and port as its proxy server
*/
public static org.openqa.selenium.Proxy createSeleniumProxy(InetSocketAddress connectableAddressAndPort) {
Proxy proxy = new Proxy();
proxy.setProxyType(Proxy.ProxyType.MANUAL);
String proxyStr = String.format("%s:%d", connectableAddressAndPort.getHostString(), connectableAddressAndPort.getPort());
proxy.setHttpProxy(proxyStr);
proxy.setSslProxy(proxyStr);
return proxy;
}
代码示例来源:origin: org.jspringbot/jspringbot-selenium
public void setProxy(String proxyHost) {
if (!StringUtils.equalsIgnoreCase(proxyHost, "none")) {
proxy = new Proxy();
proxy.setFtpProxy(proxyHost)
.setHttpProxy(proxyHost)
.setSslProxy(proxyHost);
capabilities.setCapability(CapabilityType.PROXY, proxy);
}
}
代码示例来源:origin: com.github.detro/browsermob-proxy-client
/**
* Returns the Proxy this client wraps, in form of a Selenium Proxy configuration object.
*
* @return Selenium Proxy configuration object
*/
public Proxy asSeleniumProxy() {
Proxy seleniumProxyConfig = new Proxy();
seleniumProxyConfig.setProxyType(Proxy.ProxyType.MANUAL);
seleniumProxyConfig.setHttpProxy(asHostAndPort());
return seleniumProxyConfig;
}
代码示例来源:origin: groupon/odo
public org.openqa.selenium.Proxy seleniumProxy() throws UnknownHostException {
Proxy proxy = new Proxy();
proxy.setProxyType(Proxy.ProxyType.MANUAL);
String proxyStr = String.format("%s:%d", getLocalHost().getCanonicalHostName(), getPort());
proxy.setHttpProxy(proxyStr);
proxy.setSslProxy(proxyStr);
return proxy;
}
代码示例来源:origin: com.technophobia.substeps/webdriver-substeps
private void setNetworkCapabilities(final DesiredCapabilities capabilities) {
final String proxyHost = configuration.getNetworkProxyHost();
if (StringUtils.isNotEmpty(proxyHost)) {
final int proxyPort = configuration.getNetworkProxyPort();
final String proxyHostAndPort = proxyHost + ":" + proxyPort;
final org.openqa.selenium.Proxy proxy = new org.openqa.selenium.Proxy();
proxy.setHttpProxy(proxyHostAndPort).setFtpProxy(proxyHostAndPort).setSslProxy(proxyHostAndPort);
capabilities.setCapability(CapabilityType.PROXY, proxy);
LOG.info("Proxy set to {}", proxyHostAndPort);
}
}
代码示例来源:origin: Cognifide/aet
@Override
public Proxy seleniumProxy() throws UnknownHostException {
return server.asSeleniumProxy()
.setHttpProxy(String.format("%s:%d", proxyManager.getServer(), getPort()))
.setSslProxy(String.format("%s:%d", proxyManager.getServer(), getPort()));
}
代码示例来源:origin: paypal/SeLion
/**
* @return - A {@link Proxy} object that represents the Proxy server to be used.
*/
public static Proxy createProxyObject() {
Proxy proxy = new Proxy();
String proxyHost = String.format("%s:%s", getProperty(ConfigProperty.SELENIUM_PROXY_HOST),
getProperty(ConfigProperty.SELENIUM_PROXY_PORT));
proxy.setHttpProxy(proxyHost);
proxy.setFtpProxy(proxyHost);
proxy.setSslProxy(proxyHost);
return proxy;
}
代码示例来源:origin: com.github.becauseQA/becauseQA-utils
/**
* @Title: browserProxySettings @Description: TODO @author
* alterhu2020@gmail.com @param @param capability @param @param
* proxysettings @return void return type @throws
*/
public static void ProxySettings(DesiredCapabilities capability, String proxysettings) {
org.openqa.selenium.Proxy httpproxy = new org.openqa.selenium.Proxy();
httpproxy.setHttpProxy(proxysettings);
httpproxy.setSslProxy(proxysettings);
httpproxy.setNoProxy("localhost");
capability.setCapability(CapabilityType.PROXY, httpproxy);
}
代码示例来源:origin: Frameworkium/frameworkium-core
private static Proxy createManualProxy(String proxyProperty) {
String proxyString = getProxyURL(proxyProperty);
logger.debug("All protocols to use proxy address: {}", proxyString);
Proxy proxy = new Proxy();
proxy.setProxyType(Proxy.ProxyType.MANUAL)
.setHttpProxy(proxyString)
.setFtpProxy(proxyString)
.setSslProxy(proxyString);
return proxy;
}
代码示例来源:origin: com.github.becausetesting/commons
/**
* @Title: browserProxySettings @Description: TODO @author
* alterhu2020@gmail.com @param @param capability @param @param
* proxysettings @return void return type @throws
*/
public static void ProxySettings(DesiredCapabilities capability, String proxysettings) {
org.openqa.selenium.Proxy httpproxy = new org.openqa.selenium.Proxy();
httpproxy.setHttpProxy(proxysettings);
httpproxy.setSslProxy(proxysettings);
httpproxy.setNoProxy("localhost");
capability.setCapability(CapabilityType.PROXY, httpproxy);
}
代码示例来源:origin: com.axway.ats.framework/ats-uiengine
private void setFirefoxProxyIfAvailable(
DesiredCapabilities capabilities ) {
if (!StringUtils.isNullOrEmpty(AtsSystemProperties.SYSTEM_HTTP_PROXY_HOST)
&& !StringUtils.isNullOrEmpty(AtsSystemProperties.SYSTEM_HTTP_PROXY_PORT)) {
capabilities.setCapability(CapabilityType.PROXY,
new Proxy().setHttpProxy(AtsSystemProperties.SYSTEM_HTTP_PROXY_HOST
+ ':'
+ AtsSystemProperties.SYSTEM_HTTP_PROXY_PORT));
}
}
代码示例来源:origin: tarun3kumar/seleniumtestsframework
public Proxy getProxy() {
Proxy proxy = null;
if (proxyHost != null) {
proxy = new Proxy();
proxy.setProxyType(ProxyType.MANUAL);
proxy.setHttpProxy(proxyHost);
proxy.setFtpProxy(proxyHost);
proxy.setSslProxy(proxyHost);
}
return proxy;
}
代码示例来源:origin: org.jspringbot/jspringbot-selenium
@Override
public void afterPropertiesSet() throws Exception {
if(enable) {
server = new BrowserMobProxyServer();
server.start();
int port = server.getPort();
Proxy proxy = ClientUtil.createSeleniumProxy(server);
proxy.setHttpProxy("127.0.0.1:" + port);
proxy.setSslProxy("127.0.0.1:" + port);
capabilities.setCapability(CapabilityType.PROXY, proxy);
System.out.println("BrowserMobProxyServer@" + port);
}
}
代码示例来源:origin: stackoverflow.com
String PROXY = "localhost:8080";
ProxyServer server = new ProxyServer(8080);
server.start();
Proxy proxy = server.seleniumProxy();
proxy.setHttpProxy(PROXY).setFtpProxy(PROXY).setSslProxy(PROXY);
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(CapabilityType.PROXY, proxy);
WebDriver driver = new FirefoxDriver(capabilities);
server.newHar("yahoo.com");
driver.get("http://yahoo.com");
Har har = server.getHar();
FileOutputStream fos = new FileOutputStream("C:\\Users\\ner\\output.txt");
har.writeTo(fos);
server.stop();
driver.quit();
代码示例来源:origin: timurstrekalov/saga
private Capabilities getCapabilities() {
final String proxyUrl = "localhost:" + proxyServerPort;
final Proxy proxy = new Proxy()
.setProxyType(Proxy.ProxyType.MANUAL)
.setHttpProxy(proxyUrl)
.setSslProxy(proxyUrl);
final DesiredCapabilities desiredCapabilities = new DesiredCapabilities(config.getWebDriverCapabilities());
desiredCapabilities.setCapability(CapabilityType.PROXY, proxy);
desiredCapabilities.setJavascriptEnabled(true);
return desiredCapabilities;
}
代码示例来源:origin: org.unitils.selenium/unitils-selenium
/**
* Creates the DesiredCapabilities for an IE WebDriver.
* @param proxyUrl
* @return DesiredCapabilities
*/
protected static DesiredCapabilities createCapabilitiesIE(String proxyUrl) {
DesiredCapabilities cap = DesiredCapabilities.internetExplorer();
cap.setCapability(CapabilityType.LOGGING_PREFS, createLoggingPreferences());
cap.setCapability("ignoreProtectedModeSettings", true);
cap.setCapability("ignoreZoomSetting", true);
if (StringUtils.isNotEmpty(proxyUrl)) {
Proxy proxy = new Proxy();
proxy.setHttpProxy(proxyUrl).setFtpProxy(proxyUrl).setSslProxy(proxyUrl).setNoProxy("");
cap.setCapability(CapabilityType.PROXY, proxy);
}
return cap;
}
代码示例来源:origin: org.unitils.selenium/unitils-selenium
/**
* Creates the DesiredCapabilities for firefox.
* @param proxyUrl
* @param profile
* @return DesiredCapabilities
*/
protected static DesiredCapabilities createCapabilitesFirefox(String proxyUrl, FirefoxProfile profile) {
DesiredCapabilities capabilities = DesiredCapabilities.firefox();
if (!proxyUrl.isEmpty()) {
capabilities.setCapability(FirefoxDriver.PROFILE, profile);
profile.setPreference("network.proxy.type", 1);
Proxy proxy = new Proxy();
proxy.setHttpProxy(proxyUrl).setFtpProxy(proxyUrl).setSslProxy(proxyUrl).setNoProxy("");
capabilities.setCapability(CapabilityType.PROXY, proxy);
}
capabilities.setCapability(CapabilityType.LOGGING_PREFS, createLoggingPreferences());
return capabilities;
}
代码示例来源:origin: kg.apc/jmeter-plugins-webdriver
/**
* This returns a {@link Proxy} with HTTP, HTTPS and FTP hosts and ports configured as specified.
*
*
* @param httpProxy is the http proxy host and port
* @param httpsProxy is the https proxy host and port
* @param ftpProxy is the ftp proxy host and port
* @param socksProxy is the socks proxy host and port
* @param noProxy is a comma separated list of hosts that will bypass the proxy
*
* @return a proxy object with the hosts manually specified.
*/
public Proxy getManualProxy(ProxyHostPort httpProxy, ProxyHostPort httpsProxy, ProxyHostPort ftpProxy, ProxyHostPort socksProxy, String noProxy) {
return new Proxy()
.setProxyType(Proxy.ProxyType.MANUAL)
.setHttpProxy(httpProxy.toUnifiedForm())
.setSslProxy(httpsProxy.toUnifiedForm())
.setFtpProxy(ftpProxy.toUnifiedForm())
.setSocksProxy(socksProxy.toUnifiedForm())
.setNoProxy(noProxy);
}
内容来源于网络,如有侵权,请联系作者删除!