我正在使用 selenium,我需要填写字段,我的问题是我需要从 xpath 那里知道这些字段的名称,我使用 selenium.getAttribute(myxpath) 但它不起作用这是我的 java 代码:
List<String> att= new ArrayList<String>();
for(String ills:lls){
att.add(selenium.getAttribute(ills));
}
logger.info("ma liste des attributs :"+att);
lls 是包含我所有 ids 的 arrayList 。在我的控制台中我有 ERROR: Element form:blocConfigurations:configurations:0:parametrage:options:1:option:parametres:0:parametre:valeu not found
提前致谢