selenium 可以用xpath或者css来定位目标.对于frame, 如果没有id, 可以用name或者其他属性来定位. 例如: //frame[@name='xxx']如果所有属性都没有, 那就通过先定位该frame的祖辈级元素来缩减范围, 并逐步缩减到目标唯一.例如: //div[@id='aaa']//frame
你可以选用除了id之外的其他定位方法,例如xpath、name等
定位:xpath,id,name,css,tagname,linktext方法