PhantomJS - URL Property



This property returns the current page URL.

Syntax

Its syntax is as follows −

var wpage = require('webpage').create();
wpage.url;

Example

The following example shows the use of URL property.

var wpage = require('webpage').create(); 
wpage.open('http://localhost/tasks/ptitle.html', function (status) {  
   console.log(wpage.url); 
   phantom.exit(); 
}); 

The above program generates the following output.

http://localhost/tasks/ptitle.html 
phantomjs_webpage_module_properties.htm
Advertisements