Hi,
how can I can pass more additional options?

 connect {
 additionalOptions = ['--proxy-tunnel', 'proxy.bechtle.de:80']
 }


The above is working fine, but I need to add http and https proxy as well.


SauceLabs support is suggesting this java code


System.getProperties().put("http.proxyHost", proxyHost);
System.getProperties().put("http.proxyPort", proxyPort);
System.getProperties().put("https.proxyHost", proxyHost);
System.getProperties().put("https.proxyPort", proxyPort);

but how do I apply this for the plugin in Geb?


Thank you,

Roland

-- 
You received this message because you are subscribed to the Google Groups "Geb 
User Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/geb-user/687b3acc-3982-4c7d-9328-bab2c706be10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to