我想使用键盘快捷键从机器人框架文件中使用python方法。那可能吗?
机器人框架关键字:
Check something
Given I have my scenario configured
When I configure something
Then Something else happens
Library myClass.py
myClass.py上的Python方法:
from robot.api.deco import keyword
class myClass(object):
@keyword('I configure something')
def i_configure_something(self):
self.configure()
我会用Gherkin:P解释我想要的
Given I am using VS Code to edit my files
When I highlight the keyword "I configure something"
And I press F12
Then I want it to open my python file and go directly to the method definition.
对的,这是可能的。我们将PyCharm与Intellibot插件一起使用。到目前为止,这是我找到的最佳解决方案。在PyCharm中,我们可以直接从关键字使用python方法 Ctrl+B
也可以使用带有Red插件的Eclipse来实现,但是我不知道它的快捷方式
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。