Can you brief me on creating tunnel instance when I run the test in Maven project?
Hello Mark,
You need to use the tunnel class to instanciate tunnel. After that, using put method, you can add flag like username and accesskey and those which are required. Here is the code snippet:
t = new Tunnel();
HashMap<String, String> options = new HashMap<String, String>();
options.put("user", username);
options.put("key", access_key);
options.put("mitm", --mitm);