lte2000 / intellibot

IntelliJ/PyCharm plugin for Robot Automation Framework
https://github.com/lte2000/intellibot
MIT License
90 stars 27 forks source link

Keywords in SeleniumLibrary are not jumped to via Ctrl-Click #5

Closed darrylwhiting closed 4 years ago

darrylwhiting commented 4 years ago

Using the zip file from: Issue #255 Link

This is just one example of an unrecognized keyword (pipes added for readability):

${element}= | get WebElement | css:span#blah | 

However, "get_webelement" is in the file C:\Python37-32\Lib\site-packages\SeleniumLibrary\keywords\element.py

class ElementKeywords(LibraryComponent):

    @keyword(name='Get WebElement')
    def get_webelement(self, locator):
        """Returns the first WebElement matching the given ``locator``.

        See the `Locating elements` section for details about the locator
        syntax.
        """
        return self.find_element(locator)
lte2000 commented 4 years ago

solved in dev_0.10.143.387. Please download and install the intellibot.jar from https://github.com/lte2000/intellibot

darrylwhiting commented 4 years ago

Thank you for the quick turnaround. I will download soon and report back.

darrylwhiting commented 4 years ago

I was able to to get this installed today, closing the issue since the new build fixed it.