Hi Wamboo
ok, most editors, at least, Atom, PyCharm and VSCode will highlight the function arguments and when those arguments are self and cls, they'll also highlight their use in the body of the function too as they're special to Python.
Another thing I wondered is say I have function that returns a path to an element. I then won't get autocomplete when I try to reference that variable the path was assigned to. For instance:
def get_patient_banner(self):
return Aliases.NavX.NavXHost.patient_name_banner.patient_name
If I type "." after patient_name it will give me options.
if I do
def is_correct_patient_shown(self, name):
patient_banner = self.get_patient_banner()
patient_banner.
there will be no autocomplete options when using this variabe?
I also can't click a function call and be taken to that declaration?
I'm not complaining here, just asking
:smileyhappy: