Peter Thomas

Results 29 issues of Peter Thomas

based on discussion in #1903 As of today this works: ```cucumber Feature: @ignore @setup Scenario: * def data = [{a: 1}, {a: 2}] Scenario: * def temp = karate.call('@setup').data *...

enhancement
fixed

refer conversation here: https://github.com/karatelabs/karate/pull/1861#issuecomment-1080562695 proposing the following for a start: ```cucumber # get single header * match karate.response.header('foo') == 'bar' # get all header values by key * match karate.response.headers('foo')...

enhancement
fixed

as of today this is how the `evaluate` command is handled: https://github.com/karatelabs/karate/blob/v1.2.1.RC1/karate-core/src/main/java/com/intuit/karate/debug/DapServerHandler.java#L331 we need to use the `ErrorResponse` for better IDE user-experience: https://microsoft.github.io/debug-adapter-protocol/specification#Base_Protocol_ErrorResponse

enhancement

as reported here: https://stackoverflow.com/a/69536418/143475 to replicate the issue: ```cucumber * def foo = {} * set foo.a[0].b[0].c = 'hello' * print foo ``` error: ``` * set foo.a[0].b[0].c = 'hello'...

bug
help wanted
hacktoberfest

refer discussion [in 2009 on Jun 7](https://github.com/karatelabs/karate/issues/2009#issuecomment-1148019514) plan is: * version 1.3.0 of Karate (which solves the Graal JS issues) will be the last release that uses JDK 8 *...

codequality

simplest way to replicate: ```cucumber Feature: Scenario: * call read('@stub') * print 'first' Scenario: * print 'second' @stub @ignore Scenario: * print 'called' ``` here, the second scenario will not...

bug
fixed

What I'm trying to do: When the user clicks a button, a popup should be rendered (using [Tippy.js](https://atomiks.github.io/tippyjs/)) and the ajax response should be swapped into the popup. I first...

Apologies for posting here, my intent is to get the word out to those following this project. I tried sending a mail to the developers last week, but it looks...

reported here: https://stackoverflow.com/q/73327132/143475 for now, we'll use a try-catch

bug
fixed

has been requested a few times in the last 5 years, and makes sense to me. for example this stack overflow q: https://stackoverflow.com/q/73385367/143475 so the idea is to set a...

enhancement