Guest User

Untitled

a guest
Feb 23rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  2.  
  3. String carRegistrationNumer = request.getParameter("cargo");
  4.  
  5. System.setProperty("webdriver.chrome.driver",
  6. "/drivers/chromedriver");
  7.  
  8. ChromeOptions options = new ChromeOptions();
  9. options.addArguments("headless");
  10. options.addArguments("window-size=1200x600");
  11.  
  12. WebDriver webDriver = new ChromeDriver(options);
Add Comment
Please, Sign In to add comment