We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0b7a09 commit affa03eCopy full SHA for affa03e
packages/selenium-ide/src/neo/IO/SideeX/formatCommand.js
@@ -31,7 +31,7 @@ export function xlateArgument(value) {
31
const regexp = /\$\{(.*?)\}/g
32
let lastIndex = 0
33
while ((r2 = regexp.exec(value))) {
34
- if (variables.get(r2[1])) {
+ if (variables.has(r2[1])) {
35
if (r2.index - lastIndex > 0) {
36
parts.push(string(value.substring(lastIndex, r2.index)))
37
}
0 commit comments