I want to understand how karate is picking up chrome browser on my local machine even though:
- i didn't maintain chrome path in path variable of my mac system
- I didn't download chromerdriver.exe neither i put it in my karate project dir
here is the command which is in my karate-config.js
karate.configure('driver', { type: 'chrome', addOptions: ["--remote-allow-origins=*"] });
Also i want to understand why karate is not picking up firefox on my local machine:
karate.configure('driver', { type: 'geckodriver', executable: 'geckodriver'});