我必须在我的项目中搜索所有POST和GET。假设我输入一个链接并登录系统。 Web驱动程序应搜索该页面中的所有Get和Post。
答案 0 :(得分:0)
我用过
List<WebElement> listmethod = driver.findelements(By.TagName("form"));
for(WebElement listcall : listmethod){
System.out.println(listcall.getAttributes("method"));
}
它解决了我的问题