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 b8970ce commit d410da3Copy full SHA for d410da3
Framework/Built_In_Automation/Web/Selenium/BuiltInFunctions.py
@@ -2898,6 +2898,9 @@ def check_uncheck_all(data_set):
2898
target.append((left, "element parameter", right))
2899
elif "check uncheck all" == left:
2900
command = "uncheck" if "uncheck" in right.lower() else "check"
2901
+ elif "allow hidden" == left:
2902
+ target.append((left,"option",right))
2903
+
2904
except Exception:
2905
return CommonUtil.Exception_Handler(sys.exc_info(), None, "Error parsing data set")
2906
0 commit comments