I am trying to develop scripts using Robot framework with Pycharm IDE(2017.3.6 - Community Edition) and have added the plugins Intellibot(0.10.143.381)and Robot Framework support(0.16.4).
Python Version 2.7.14
Robot Libraries version 
I have a list of files in my scripts
- Variable File
- Common Keyword file(consisting of common methods used) FileName Comman_Handlers.txt
My method as follows
WaitForELement
[Arguments] ${Locator}
Set Browser Implicit Wait 3
Wait Until Keyword Succeeds 10sec 1sec Element Should Be Visible ${Locator}
- Feature specific file(having references of common methods and specif methods for the feature)
I will access the method used in the previous file as
Comman_Handlers.WaitForELement ${Locator}
I am referencing the file using a relative path
..\Infrastructure\Comman_Handlers.txt
- Test case file
My problem is
I am not able to navigate to the definition of the method Comman_Handlers.WaitForELement (No usages found in all places are found) is shown. The same works for me in sublime.
I am expecting auto completion for the keywords which are already available in the libraries such as ExtendedSelenium2Library,Excel2Library and for the content which were already typed(for example a variable declared in the previous step)
Kindly provide a me a glimpse on where am getting it wrong.
Thanks in advance