I have done this
File file = new File("path\\to\\chrome driver");
System.setProperty("webdriver.chrome.driver", file.getAbsolutePath());
WebDriver driver = new ChromeDriver();
Totally I have 5 testcases to test. But when testing only 2 or 3 test cases are running and the remaining are not. Then I got error as,
[1207/104351:ERROR:ipc_sync_channel.cc(378)] Canceling pending sends
[1207/104351:ERROR:automation_proxy.cc(319)] Channel error in AutomationProxy.
My test cases are in java and i'm trying this is Windiws OS What is this how can I fix this?