Protocol – Specifies the protocol name. It is used to access the resource on the Internet. (HTTP (without SSL) or HTTPS (with SSL))
hostname – Host name specifies the host that owns the resource. For example, www.wikitechy.com. A server provides services using the name of the host.
port– A port number used to recognize a specific process to which an Internet or other network message is to be forwarded when it arrives at a server.
pathname – The path gives info about the specific resource within the host that the Web client needs to access. For example, /index.html.
query – A query string follows the path component, and provides a string of information that the resource can utilize for some purpose (for example, as parameters for a search or as data to be processed).
hash – The anchor portion of a URL, includes the hash sign (#).
Location object properties can access all of these URL components :
hash – It is used to sets or returns the anchor portion of a URL.
var currenthash = window.location.hash;
host– It is used to sets or returns the hostname and port of a URL.
var currentHost = window.location.host;
hostname – It is used to sets or returns the hostname of a URL.
var currentHostname = window.location.hostname;
href– It is used to sets or returns the entire URL.
var currentURL = window.location.href;
pathname – It is used to sets or returns the path name of a URL.
var currentPathname = window.location.pathname;
port–sets or returns the port number the server uses for a URL.
var currentPort = window.location.port;
protocol– It is used to sets or returns the protocol of a URL.
var currentProtocol = window.location.protocol;
search – It is used to sets or returns the query portion of a URL
var currentSearchString = window.location.search;
Get Current URL in Web browser:
To Get the URL From Firefox and Opera :
DdeClient dde =newDdeClient(browser,"WWW_GetWindowInfo");dde.Connect();
string url =dde.Request("URL",int.MaxValue);
string[] text =url.Split(new string[]{"\",\""},StringSplitOptions.RemoveEmptyEntries);dde.Disconnect();return text[0].Substring(1);DownloadNDde dll and add reference, and use as name space
//===========Get URL of All Tabs From IE ======================
We can get current page URL in web browser using following code,
Java Code
Request.Url.AbsoluteUri.ToString()
Java Code
publicstringGetChormeURL(string ProcessName){string ret ="";
Process[] procs = Process.GetProcessesByName(ProcessName);foreach(Process proc in procs){// the chrome process must have a windowif(proc.MainWindowHandle == IntPtr.Zero){continue;}//AutomationElement elm = AutomationElement.RootElement.FindFirst(TreeScope.Children,// new PropertyCondition(AutomationElement.ClassNameProperty, "Chrome_WidgetWin_1"));// find the automation element
AutomationElement elm = AutomationElement.FromHandle(proc.MainWindowHandle);
Java Code
// manually walk through the tree, searching using TreeScope.Descendants is too slow (even if it's more reliable)AutomationElement elmUrlBar =null;try{// walking path found using inspect.exe (Windows SDK) for Chrome 43.0.2357.81 m (currently the latest stable)// Inspect.exe path - C://Program files (X86)/Windows Kits/10/bin/x64var elm1 =elm.FindFirst(TreeScope.Children,newPropertyCondition(AutomationElement.NameProperty,"Google Chrome"));if(elm1 ==null){continue;}// not the right chrome.exevar elm2 =TreeWalker.RawViewWalker.GetLastChild(elm1);// I don't know a Condition for this for finding
Java Code
var elm3 =elm2.FindFirst(TreeScope.Children,newPropertyCondition(AutomationElement.NameProperty,""));var elm4 =TreeWalker.RawViewWalker.GetNextSibling(elm3);// I don't know a Condition for this for findingvar elm5 =elm4.FindFirst(TreeScope.Children,newPropertyCondition(AutomationElement.ControlTypeProperty,ControlType.ToolBar));var elm6 =elm5.FindFirst(TreeScope.Children,newPropertyCondition(AutomationElement.NameProperty,""));
elmUrlBar =elm6.FindFirst(TreeScope.Children,newPropertyCondition(AutomationElement.ControlTypeProperty,ControlType.Edit));}catch{// Chrome has probably changed something, and above walking needs to be modified. :(// put an assertion here or something to make sure you don't miss itcontinue;}
[ad type=”banner”]
Java Code
// make sure it's validif(elmUrlBar ==null){// it's not..continue;}// elmUrlBar is now the URL bar element. we have to make sure that it's out of keyboard focus if we want to get a valid URLif((bool)elmUrlBar.GetCurrentPropertyValue(AutomationElement.HasKeyboardFocusProperty)){continue;}// there might not be a valid pattern to use, so we have to make sure we have one
java Code
AutomationPattern[] patterns = elmUrlBar.GetSupportedPatterns();if(patterns.Length ==1){try{
ret =((ValuePattern)elmUrlBar.GetCurrentPattern(patterns[0])).Current.Value;return ret;}catch{}if(ret !=""){// must match a domain name (and possibly "https://" in front)if(Regex.IsMatch(ret, @"^(https:\/\/)?[a-zA-Z0-9\-\.]+(\.[a-zA-Z]{2,4}).*$")){// prepend http:// to the url, because Chrome hides it if it's not SSLif(!ret.StartsWith("http")){
ret ="http://"+ ret;}
Wikitechy Founder, Author, International Speaker, and Job Consultant. My role as the CEO of Wikitechy, I help businesses build their next generation digital platforms and help with their product innovation and growth strategy. I'm a frequent speaker at tech conferences and events.