robotcode
robotcode copied to clipboard
RobotFramework support for Visual Studio Code
Real‑time execution viewer using **JSONL** events. Runner → **Broadcaster** → fan‑out to configurable **sinks** (file, WebSocket, custom). JSONL doubles as **event store** for **replay**. Two UIs: **VS Code panel** and...
to speedup things, there should be an own robocop language server that is not so deeply integrated in the robotcode code base.
- [ ] How debug robot with vscode/pycharm - [ ] How to setup a project with different python project manager uv/hatch/poetry - [ ] Quickfixes - [ ] Errors/warning/hint...
we need a vscode chat participant see here https://code.visualstudio.com/api/extension-guides/ai/chat
**Describe the bug** Having multiple projects (modules). ``` ModuleA .venv ModuleB robot/.venv (that has robot framework installed and is configured as ProjectB python interpeter) ``` Open any robot file and...
**Describe the bug** When I have a profile activated in VSCode and remove all profiles from `robot.toml`, the profile remains active in VSCode. When I execute a test case, an...
**Describe the bug** When developing custom Python libraries for Robot Framework using the RobotCode VS Code extension, we observe that keyword navigation using "Ctrl+Click" to jump to keyword definitions breaks...
Gude! I have a profile that I'd like to active in CI environment: ```toml [profiles.ci] enabled = { if = "environ.get('CI') == 'true'" } no-status-rc = { if = "environ.get('CI_COMMIT_REF_NAME')...
As descriped in my thread in discussions https://github.com/robotcodedev/robotcode/discussions/429 RobotCode does currently not recognize variables from python variable files for autocomplete. Example: Page1.py `class Page1:` ` element1 = a` ` element2...
**Problem:** RobotFramework is very lenient on variable types, so to minimize errors while writing test cases I use a lot of strict typing in my python libraries, be it built...