Commit 5448e173 by 施晓雨

up

parent 67955fa6
...@@ -131,11 +131,8 @@ function cell (xpath, name = "", type = "", title = "") { ...@@ -131,11 +131,8 @@ function cell (xpath, name = "", type = "", title = "") {
for (let i = 0; i < 3; i++) { for (let i = 0; i < 3; i++) {
let isGetElement = elementExists(_tableXpathArray + '[' + (i + 1) + ']' + '/' + _relativeXpathArray) let isGetElement = elementExists(_tableXpathArray + '[' + (i + 1) + ']' + '/' + _relativeXpathArray)
if (isGetElement) { if (isGetElement) {
existCount = i existCount++;
} else {
return false
} }
} }
return existCount > 1; return existCount > 1;
} }
......
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