Daniel Biehl

Results 161 comments of Daniel Biehl

RobotCode uses RF's TestSuiteBuilder (with a few small extensions) to find the available test cases/tasks, so I have the issue in RobotCode as well. And I regularly get issues on...

After some investigation from my side, maybe it's not a problem of BrowserLibrary, I think it is more a problem of PythonLibCore. Your `attribute_warning` decorator uses functool.wrap to but it...

changing the given line to ``` return os.path.normpath(inspect.getsourcefile(inspect.unwrap(method))) ``` should do the trick and it is also the same like robotframework gets the source for a keyword.

Because of #125 I have limited the values I can import from a variable import for security and complexity reasons. Simple values are no problem, but for lists and dictionaries...

Yes, that's because Robotframework generates the same longname for both test(_).robot files. see [here](https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#test-suite-name-and-documentation) Try to execute the test in `test_.robot` with the `-t` option like `robot -t "*.test.first test"`...

Try "Run" menu and "Start Debugging" or "Run without Debugging". You can create a Launch config according to your wishes.

After some invesitagtion I opened these issues [4253](https://github.com/robotframework/robotframework/issues/4253) and [4249](https://github.com/robotframework/robotframework/issues/4249) on robotframework for this. And allready fixed 4249. With this [commit](https://github.com/d-biehl/robotcode/commit/0c7dbfdcd8912efad2658fd2bed3bbf698f86c0d) RobotCode shows a run/debug triangle before every testcase, also...

Both issues on RobotFramework ([4253](https://github.com/robotframework/robotframework/issues/4253) and [4249](https://github.com/robotframework/robotframework/issues/4249)) are fixed and closed. Starting with version 5.0 of RobotFramework warns if there are suites with same name are executed.

Need to find a way, to show these warnings in Editor.

this is done with the new test discoverer, which displays warnings about multiple suites and tests with the same name.