如何在链接中找到方法(GET和POST)使用Selenium Web驱动程序?

时间:2017-04-07 09:17:20

标签: selenium selenium-webdriver automation selenium-grid browser-automation

我必须在我的项目中搜索所有POST和GET。假设我输入一个链接并登录系统。 Web驱动程序应搜索该页面中的所有Get和Post。

1 个答案:

答案 0 :(得分:0)

我用过

   List<WebElement> listmethod = driver.findelements(By.TagName("form"));
for(WebElement listcall : listmethod){
System.out.println(listcall.getAttributes("method"));
}

它解决了我的问题