diff --git a/README.md b/README.md index efb3ae8..06c9ab3 100644 --- a/README.md +++ b/README.md @@ -339,7 +339,7 @@ String ```python = .isdecimal() # Checks for [0-9]. Also [०-९] and [٠-٩]. = .isdigit() # Checks for [²³¹…] and isdecimal(). - = .isnumeric() # Checks for [¼½¾], [零〇一…] and isdigit(). + = .isnumeric() # Checks for [¼½¾…], [零〇一…] and isdigit(). = .isalnum() # Checks for [a-zA-Z…] and isnumeric(). = .isprintable() # Checks for [ !#$%…] and isalnum(). = .isspace() # Checks for [ \t\n\r\f\v\x1c-\x1f\x85\xa0…]. @@ -2521,7 +2521,7 @@ from selenium import webdriver .get('') # Also .implicitly_wait(seconds). = .find_element('css selector', '') # '#.[=""]'. = .find_elements('xpath', '') # '//[@=""]'. - = .get_attribute/get_property() # Also .text/tag_name. + = .get_attribute() # Property if exists. Also .text. .click/clear() # Also .send_keys(). ``` diff --git a/index.html b/index.html index 2e19221..95bcae5 100644 --- a/index.html +++ b/index.html @@ -54,7 +54,7 @@
- +
@@ -320,7 +320,7 @@ Point(x=1, y=2

Property Methods

<bool> = <str>.isdecimal()                   # Checks for [0-9]. Also [०-९] and [٠-٩].
 <bool> = <str>.isdigit()                     # Checks for [²³¹…] and isdecimal().
-<bool> = <str>.isnumeric()                   # Checks for [¼½¾], [零〇一…] and isdigit().
+<bool> = <str>.isnumeric()                   # Checks for [¼½¾…], [零〇一…] and isdigit().
 <bool> = <str>.isalnum()                     # Checks for [a-zA-Z…] and isnumeric().
 <bool> = <str>.isprintable()                 # Checks for [ !#$%…] and isalnum().
 <bool> = <str>.isspace()                     # Checks for [ \t\n\r\f\v\x1c-\x1f\x85\xa0…].
@@ -2068,7 +2068,7 @@ print(f'{python_url},
 <Drv>.get('<url>')                                     # Also <Drv>.implicitly_wait(seconds).
 <El> = <Drv/El>.find_element('css selector', '<css>')  # '<tag>#<id>.<class>[<attr>="<val>"]'.
 <list> = <Drv/El>.find_elements('xpath', '<xpath>')    # '//<tag>[@<attr>="<val>"]'.
-<str> = <El>.get_attribute/get_property(<str>)         # Also <El>.text/tag_name.
+<str> = <El>.get_attribute(<str>)                      # Property if exists. Also <El>.text.
 <El>.click/clear()                                     # Also <El>.send_keys(<str>).
 
@@ -2932,7 +2932,7 @@ $ deactivate # Deactivates the activ