I want to retrieve the request parameters of the URL using selenum-1 Is there a way? I saw the API list getLocation() method returns the absolute URL.
If the URL is http://webserver/webapps/library/do/javabooks/author?author_id=42&book_id=55
If I am writting selenium.getLocation() it returns me http://webserver/webapps/library/do/javabooks/author. But I am interested in the request parameters. Or if I can get the full URL with request parameters using Selenium API that is also fine. Is there any way?
Thanks in advance.