The following command executes correctly when running on local:
String fileLocation = "/Users/local/file.xlsx";
chro.findElement(By.xpath("//input[@title='input']")).sendKeys(fileLocation);
But fails when running remotely (on selenium grid) with following exception: org.openqa.selenium.InvalidArgumentException: invalid argument: File not found : /Users/local/file.xlsx
Does anyone know what might be the reason?