How to get the URL of the frame in chrome browser

60,206

Solution 1

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.

Solution 2

Try using "Inspect Element" over desired frame. You will see original frameset HTML code and selected page code nested.

Share:
60,206

Related videos on Youtube

Alexander Zwitbaum
Author by

Alexander Zwitbaum

Updated on September 18, 2022

Comments

  • Alexander Zwitbaum
    Alexander Zwitbaum over 1 year

    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.

  • Alexander Zwitbaum
    Alexander Zwitbaum over 12 years
    no, it shows only the source code of the parent page, I see only the initial url of the frame. After redirect it doesn't shows the updated url.
  • Alexander Zwitbaum
    Alexander Zwitbaum over 12 years
    Unfortunately you can see only the htmml code, but not the request url like in Internet Explorer.
  • Fuhrmanator
    Fuhrmanator almost 12 years
    @Shurup In Chrome 20.x, once you're in Developer Tools (via Inspect Element) you can click the Resources tab, and it will display a Frames tree. If you open up the frames, you can right-click on the resource inside, which will allow you to Open link in new tab or Copy link address
  • SpareBytes
    SpareBytes about 8 years
    Beware, the parent frame's html doesn't change to reflect navigation within the child frame.