(opts, helper)
| 10 | } |
| 11 | |
| 12 | function isStrictStep(opts, helper) { |
| 13 | if (opts?.exact === true || opts?.strictMode === true) return true |
| 14 | if (opts?.exact === false || opts?.strictMode === false) return false |
| 15 | return helper.options.strict |
| 16 | } |
| 17 | |
| 18 | function selectElement(els, locator, helper) { |
| 19 | const opts = store.currentStep?.opts |