Sadiq Kassamali
Sadiq Kassamali
peter has already mentioned it here https://github.com/karatelabs/karate/blob/develop/karate-core/src/test/java/com/intuit/karate/core/retry/RetryTest.java#L35 i++ will make it continues loop without break; ideally you would want to run it once
i am doing this this way. List failed = results.getScenarioResults().filter(sr -> sr.isFailed()) .collect(Collectors.toList()); try { boolean rerun = true; while(rerun) if (!failed.isEmpty()) { log.info("Fail size: + " + failed.size()); log.info("May...
thanks for letting me know appreciate it, i stand corrected
Ty for the fix :)
Would this just work ? mo.execute(); if (mo.pass) { if (type == Match.Type.CONTAINS_ANY || type == Match.Type.CONTAINS_ANY_DEEP) { return true; // exit early } unMatchedKeysExp.remove(key); if (unMatchedKeysExp.isEmpty() && (type ==...
@JoanaPedrosoDiconium Add this in your pom and see if this helps ${project.basedir}src/test/resources/ //
@pratikscfr what the exception ? does it work with playwright or selenium directly ? did you try javascript way ?
paste link to your png on imgur or something... could be an invalid or corrupted image
Isn't this your issue https://stackoverflow.com/questions/60121921/trying-to-do-assertion-on-sse-type-content-type i asked this question few years ago and @ptrthomas responded fast as usual unless it's something different
what happens when you don't have a delay ? does it take ~28000?