@Controller @RequestMapping(value="/app/rest/webdrivers") public class WebDriverResource extends Object
| Modifier and Type | Field and Description |
|---|---|
protected minium.web.DelegatorWebDriver |
delegatorWebDriver |
protected WebDriverService |
webDriverService |
| Constructor and Description |
|---|
WebDriverResource() |
| Modifier and Type | Method and Description |
|---|---|
void |
create(WebDriversProperties.DeveloperWebDriverProperties webDriverProperties) |
org.springframework.http.ResponseEntity<String> |
downloadAll() |
List<WebDriversProperties.DeveloperWebDriverProperties> |
getAvailableWebdrivers() |
org.springframework.http.ResponseEntity<String> |
isLaunched() |
boolean |
isRecorderAvailableForBrowser(String browser) |
org.springframework.http.ResponseEntity<String> |
updateAll() |
@Autowired protected minium.web.DelegatorWebDriver delegatorWebDriver
@Autowired protected WebDriverService webDriverService
@RequestMapping(value="/isLaunched",
method=GET,
produces="text/plain; charset=utf-8")
@ResponseBody
public org.springframework.http.ResponseEntity<String> isLaunched()
@RequestMapping(value="/isRecorderAvailableForBrowser",
method=GET)
@ResponseBody
public boolean isRecorderAvailableForBrowser(@RequestParam(value="browser")
String browser)
@RequestMapping(value="/create",
method=POST)
@ResponseBody
public void create(@RequestBody
WebDriversProperties.DeveloperWebDriverProperties webDriverProperties)
throws IOException
IOException@RequestMapping(value="/download/all",
method=GET,
produces="text/plain; charset=utf-8")
@ResponseBody
public org.springframework.http.ResponseEntity<String> downloadAll()
throws IOException
IOException@RequestMapping(value="/update/all",
method=GET,
produces="text/plain; charset=utf-8")
@ResponseBody
public org.springframework.http.ResponseEntity<String> updateAll()
throws IOException
IOException@RequestMapping(value="/getAvailableWebdrivers",
method=GET)
@ResponseBody
public List<WebDriversProperties.DeveloperWebDriverProperties> getAvailableWebdrivers()
Copyright © 2019 VILT Group. All rights reserved.