Reputation: 357
I use Karate paralel run and everything is OK when I use driver configuration:
karate.configure('driver', { type: 'geckodriver', executable: '/Users/rabu/Downloads/geckodriver'});
But I need to change the executable URL from code above to:
I have tried many url variations but I have not been successfull.
Thank you for the help.
Upvotes: 1
Views: 828
Reputation: 929
Try
karate.configure('driver', { type: 'geckodriver', executable: './src/test/java/drivers/geckodriver'});
Upvotes: 2