com.zebrunner.carina.webdriver.proxy.mode.TransparentMode Maven / Gradle / Ivy
package com.zebrunner.carina.webdriver.proxy.mode;
/**
* In transparent mode, traffic is directed into a proxy at the network layer, without any client configuration required.
* This makes transparent proxying ideal for situations where you can’t change client behaviour.
* For more info check doc
*/
public class TransparentMode extends Mode {
public TransparentMode() {
super("transparent");
}
}