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 1c05660 commit d4aa7f4Copy full SHA for d4aa7f4
src/SeleniumLibrary/__init__.py
@@ -604,6 +604,7 @@ def __init__(
604
page_load_timeout=timedelta(minutes=5),
605
action_chain_delay=timedelta(seconds=0.25),
606
language: Optional[str] = None,
607
+ shadowdom_piercing = True,
608
):
609
"""SeleniumLibrary can be imported with several optional arguments.
610
@@ -671,6 +672,7 @@ def __init__(
671
672
self._drivers = WebDriverCache()
673
translation_file = self._get_translation(language)
674
DynamicCore.__init__(self, libraries, translation_file)
675
+ self._shadowdom_piercing = is_truthy(shadowdom_piercing)
676
677
def run_keyword(self, name: str, args: tuple, kwargs: dict):
678
try:
0 commit comments