Problem :
I want to check my URL is correct redirected (parameter etc.) in Chrome. In the address bar only the main URL is listed. In IE all you need is right-click -> Properties. How to obtain the same in Chrome?
The URL in the source of the e.g. iframe tag doesn’t solve the problem, because the page in frame makes redirects, postbacks etc without changing the source in the iframe. So you can’t find the URL in the html source.
Solution :
Right-clicking on the frame should show you the option “View frame source”. By clicking on it, it will open the source code in a new tab. Its URL is on the address bar. Just have to ignore to remove the “view-source:” prefix, though.
Try using “Inspect Element” over desired frame. You will see original frameset HTML code and selected page code nested.
go to the system menu (wrench/spanner) Tools -> Developer tools.
you should be able to see the frame url in there
Sometimes a “frame” is more a “popup” and has NO URL, because it is compiled together from different code parts from the main .html page. There is NO URL for the “frame”
Main: http://www.celine-cellier.com/fr/produits/boites-a-bijoux
If you click on one of the displayed cases, then there is a “frame” coming up, which explains the case in detail (French). The “frame” has no URL, because all the code (Joomla) is hidden in the main .html
In the main .html are the images downloaded, AND the content text is taken from the main .html also, and so on. The only difference is the # sign at the end of the original main URL
Frame: http://www.celine-cellier.com/fr/produits/boites-a-bijoux#
The frame itself does NOT have an own URL, so it can NOT be found!