Commit 71c6be4a authored by Lin Jen-Shin's avatar Lin Jen-Shin

Use all_elements instead

parent 0446419a
...@@ -17,13 +17,13 @@ module QA ...@@ -17,13 +17,13 @@ module QA
end end
def fill_variable(key, value) def fill_variable(key, value)
keys = all('.qa-ci-variable-input-key') keys = all_elements(:ci_variable_input_key)
index = keys.size - 1 index = keys.size - 1
# After we fill the key, JS would generate another field so # After we fill the key, JS would generate another field so
# we need to use the same index to find the corresponding one. # we need to use the same index to find the corresponding one.
keys[index].set(key) keys[index].set(key)
all('.qa-ci-variable-input-value')[index].set(value) all_elements(:ci_variable_input_value)[index].set(value)
end end
def save_variables def save_variables
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment