Pergunta de entrevista da empresa Scientific Games

how to trigger the chrome driver located at your test machine without changing the location path

Resposta da entrevista

Sigiloso

27 de dez. de 2020

create a new instance of File class and assign the file path starting from root File dir=new File("./abc/xyz"); then get the absolute path and pass it as a argument for FileInputStream FileInputStream fis= new FileInputStream (dir.getAbsolutepath()):

3