In BETA now: setProxy | http://IP:PORT | username,password
Beta link: UI.Vision RPA - Chrome Web Store
Notes:
-
http://
andhttps://
proxies supported (if you need another protocol (socks?), please tell us) -
setProxy | default
- uses the default proxy as configured in Settings > Selenium > Proxy -
setProxy | direct
- turns off proxy
You have two ways to enable a proxy:
- In the macro via setProxy command
- Manually in Settings > Selenium > Proxy
If a proxy is active, the UI Vision RPA icon turns red:
Example macro to switch proxy:
{
"Name": "proxy-test",
"CreationDate": "2019-10-24",
"Commands": [
{
"Command": "setProxy",
"Target": "https://zproxy.lum-superproxy.io:22225",
"Value": "lum-customer-abc,bbbxxxyyyzzz"
},
{
"Command": "open",
"Target": "https://tools.keycdn.com/geo",
"Value": ""
},
{
"Command": "setProxy",
"Target": "http://103.194.242.254:60025",
"Value": ""
},
{
"Command": "open",
"Target": "https://tools.keycdn.com/geo",
"Value": ""
},
{
"Command": "setProxy",
"Target": "default",
"Value": ""
},
{
"Command": "open",
"Target": "https://tools.keycdn.com/geo",
"Value": ""
},
{
"Command": "setProxy",
"Target": "direct",
"Value": ""
},
{
"Command": "open",
"Target": "https://tools.keycdn.com/geo",
"Value": ""
}
]
}