Forum Discussion
shankar_r
9 years agoCommunity Hero
Hi,
You missed to mention on which browser it should run.
Ex: Browsers.Item(btIExplorer).Run("https://[<IPv6_addr>]:<port_num>")
firdosh
9 years agoNew Contributor
Here, I just the mentioned the routine which I am using. And of course, I have mentioned the browser type in my script :)
var natIP = "x:x:x:x:x:x:x:x";
natIP = "[" + natIP + "]"; // IPv6 address needs to be enclosed within []
var loginURLStr = "https://" + natIP + ":5480";
Browsers.Item(btIExplorer).Run(loginURLStr);
The above snippet works fine for an IPv4 address, but throws error message for an IPv6 address.
Regards,
Mohammed Firdosh Nasim.