p2018
p2018

Reputation: 125

QUERY: Using Karate DSL with javascript based UI automation framework

I want to know, if we can use karate with JS based UI automation framework. And if yes, what are the requisite to follow. Do we require maven in that case?

We have well matured UI automation Selenium based framework. We want to know, if we can integrate Karate DSL without using maven.

Upvotes: 2

Views: 1220

Answers (1)

Peter Thomas
Peter Thomas

Reputation: 58058

You might if you use the CLI (command line interface) provided by the stand-alone JAR / executable. Please read the documentation here: https://github.com/intuit/karate/tree/master/karate-netty#standalone-jar

Which means if you can call an OS command from node / JS - you can use Karate. But there are no guarantees - and you can assume the answer to your question is NO.

That said - we plan to have our own competitor to Selenium - but it will take a little more time: https://github.com/intuit/karate/tree/master/karate-core

Upvotes: 1

Related Questions