trying to click an href nested inside an iframe and more divs and a table
the href has no id class or anything I know that can be used to access it
any ideas ?
You can use xpath for that. Since you mentioned the href changes, you can use contain and enter the part of the href thats static.
driver.find_element_by_xpath("//a[contains(@href,'url')]")
Also make sure you focus on the iframe before trying to click this element, otherwise you will get no such element error.
driver.switchTo().frame('frame-id');