You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param disabled: set disable state for element (Default = False)
643
-
:param password_char: Passwork character if this is a password field (Default value = '')
644
-
:param justification: justification for data display
646
+
:param password_char: Password character if this is a password field (Default value = '')
647
+
:param justification: justification for data display. Valid choices - left, right, center
645
648
:param background_color: color of background
646
649
:param text_color: color of the text
647
650
:param font: ▲ specifies the font family, size, etc
648
-
:param tooltip: text, that will appear the you hover on
651
+
:param tooltip: str. Text shown when cursor hovers over the element
649
652
:param change_submits: If True, pressing Enter key submits window- DEPRICATED DO NOT USE! (Default = False)
650
653
:param enable_events: Turns on the element specific events. Use this instead of change_submits (Default = False)
651
-
:param do_not_clear: see docx (Default = True)
652
-
:param key: ▲ Used with window.FindElement and with return values
653
-
:param focus: if focus should be set to this
654
-
:param pad: ▲ Amount of padding to put around element
655
-
:param right_click_menu: see "Right Click Menus"
656
-
:param visible: set visibility state of the element (Default = True)
654
+
:param do_not_clear: Bool. If False then the field will be set to blank after ANY submission (button, any event) (Default = True)
655
+
:param key: ▲ Any. Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values
656
+
:param focus: Bool. Determines if initial focus should go to this element.
657
+
:param pad: ▲ Tuple. Amount of padding to put around element. Normally (horizontal pixels, vertical pixels) but can be split apart further into ((horizontal left, horizontal right), (vertical above, vertical below))
658
+
:param right_click_menu: [[]]. A list of lists of Menu items to show when this element is right clicked. See docs for format.
659
+
:param visible: Bool. set visibility state of the element (Default = True)
0 commit comments