空手道UI是否支持多远程/基于web的聊天应用程序



空手道UI是否支持多远程或任何基于web的聊天应用程序?是否可以启动两个驱动程序?有人能在这里提出建议吗?

Background:
* configure driver1 = { type: 'chrome' }
* configure driver2 = { type: 'chrome' }
Scenario: try to login to github
and then do a google search

Given driver1 "<chat-url>"
And input("#user1", 'Hello User')

Given driver2 '<chat -url>'
And match html("#user2) contains "Hello User"

Karate需要更改以同时支持同一场景中的两个浏览器。我建议您在这里尝试Java API:https://github.com/intuit/karate/blob/master/karate-demo/src/test/java/driver/demo/Demo01JavaRunner.java

这不是我们现在的优先事项。您可以尝试找到其他需要此功能的人,或者在需要时贡献代码更改。您需要注意这一点:https://stackoverflow.com/a/61331058/143475

最新更新