We have a network diagnostic tool web page that we want to open programatically with parameters (IP...)
In the page (https://app/netsearch.html), normally we have to enter just the ip address range in the related input field and press submit button. When we do that manually the requested results are displayed but the url does not change. (Normally would expect that the related parameters are added after the page,according entered values).
Then I have opened the browsers inspect tool, have entered the ip range (10.129.64.0/24) again manually and pressed the button. I selected "Network" and then the tab "Request". Here I found following entry: (The parameters that I was searching for)
otype=network&sitecode=&network=10.129.64.0%2F24&networkname=&networktype=Choose+network+type&opt_exactmatch=false&opt_caseinsensitive=true&opt_excludesmall=true&opt_dhcponly=false&_return_fields=network%2Ccomment%2Cextattrs%2Cmembers
I added this after the page url like:
https://app/netsearch.html?otype=network&sitecode=&network=10.129.64.0%2F24&networkname=&networktype=Choose+network+type&opt_exactmatch=false&opt_caseinsensitive=true&opt_excludesmall=true&opt_dhcponly=false&_return_fields=network%2Ccomment%2Cextattrs%2Cmembers
But when I try to open this url the expected page is not coming. Instead just the https://app/netsearch.html page where nothing is entered.
What is missing in my approach? (I hvae tried on almost all known browsers)