Skip to content

Commit d410da3

Browse files
committed
- allow hidden added to check uncheck all
1 parent b8970ce commit d410da3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Framework/Built_In_Automation/Web/Selenium/BuiltInFunctions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2898,6 +2898,9 @@ def check_uncheck_all(data_set):
28982898
target.append((left, "element parameter", right))
28992899
elif "check uncheck all" == left:
29002900
command = "uncheck" if "uncheck" in right.lower() else "check"
2901+
elif "allow hidden" == left:
2902+
target.append((left,"option",right))
2903+
29012904
except Exception:
29022905
return CommonUtil.Exception_Handler(sys.exc_info(), None, "Error parsing data set")
29032906

0 commit comments

Comments
 (0)