ImageI am trying to get the \"href\" of a particular frame which you can find in the image , i tried as much as i can but i am not able to get the \"href\"
        
As per the xpath you shared to get all the "href" attributes you can use the following code block :
List list = d.findElements(By.xpath("//form[@name='form1']/table/tbody/tr[last()]/td/a"));
    for(WebElement e : list)
        System.out.println(e.getAttribute("href"));