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
Download the pycharm professional edition(2017.1.2) from Jetbrains website and install it.
More info about the pycharm :- Build #PY-171.4249.47, built on April 26, 2017
Install Intellibot(0.10.143.381) and Robot Framework Support plugins(0.16.2)
Create a python script with the below instructions
testlibrary.py
from robot.api.deco import keyword @Keyword(name="Login to Server ${ip}")
def server_perform_login(ip):
print("The IP Address provided is %s" %ip)
Create a .robot file and call the above library
*** Settings ***
Library testlibrary
After importing the above library, keyword with the name "Login to Server" is not shown during the auto suggest of keywords.
The text was updated successfully, but these errors were encountered:
Hi,
Follow the below steps to reproduce the issue
More info about the pycharm :- Build #PY-171.4249.47, built on April 26, 2017
testlibrary.py
from robot.api.deco import keyword
@Keyword(name="Login to Server ${ip}")
def server_perform_login(ip):
print("The IP Address provided is %s" %ip)
*** Settings ***
Library testlibrary
After importing the above library, keyword with the name "Login to Server" is not shown during the auto suggest of keywords.
The text was updated successfully, but these errors were encountered: