I managed to get Show Completion to work thanks to this answer. But what does str(object) -> string mean as a tip after typing the opening bracket of a function?
Example code:
linkText = "some text"
elms = browser.find_elements(By.PARTIAL_LINK_TEXT(linkText))
On Run gives: TypeError: 'str' object is not callable
Does it mean linkText
should be a pointer to string?
How do I enter a pointer in Python?