{"id":28452923,"url":"https://github.com/marketsquare/robotframework-stacktrace","last_synced_at":"2025-07-23T01:34:00.812Z","repository":{"id":48775799,"uuid":"372895079","full_name":"MarketSquare/robotframework-stacktrace","owner":"MarketSquare","description":"A listener for RF \u003e= 4.0 that prints a Stack Trace to console to faster find the code section where the failure appears.","archived":false,"fork":false,"pushed_at":"2023-11-09T10:27:18.000Z","size":36,"stargazers_count":18,"open_issues_count":4,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-07T07:03:43.379Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MarketSquare.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-01T16:27:02.000Z","updated_at":"2024-08-30T08:16:45.000Z","dependencies_parsed_at":"2024-06-19T16:23:51.985Z","dependency_job_id":"af800a4f-9ba7-4bde-90de-18d2ef7048ee","html_url":"https://github.com/MarketSquare/robotframework-stacktrace","commit_stats":{"total_commits":16,"total_committers":3,"mean_commits":5.333333333333333,"dds":0.4375,"last_synced_commit":"65e78b7bfda0e6b165c05f491d02ae02c7317234"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/MarketSquare/robotframework-stacktrace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotframework-stacktrace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotframework-stacktrace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotframework-stacktrace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotframework-stacktrace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarketSquare","download_url":"https://codeload.github.com/MarketSquare/robotframework-stacktrace/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotframework-stacktrace/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266602819,"owners_count":23954696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-06T18:13:10.200Z","updated_at":"2025-07-23T01:34:00.779Z","avatar_url":"https://github.com/MarketSquare.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# robotframework-stacktrace\nA listener for RF \u003e= 4.0 that prints a Stack Trace to console to faster find the code section where the failure appears.\n\n## Installation\n\n```shell\npip install robotframework-stacktrace\n```\n\n## Usage\n\n```shell\nrobot --listener RobotStackTracer \u003cyour file.robot\u003e\n```\n\n### Example\n\nOld Console Output:\n\n```commandline\n❯ robot -d logs TestCases/14_Browser/01_CarConfig.robot\n==============================================================================\n01 CarConfig\n==============================================================================\nConfigure Car with Pass                                               | FAIL |\nTimeoutError: page.selectOption: Timeout 3000ms exceeded.\n=========================== logs ===========================\nwaiting for selector \"\"Basismodell\" \u003e\u003e ../.. \u003e\u003e select\"\n  selector resolved to visible \u003cselect _ngcontent-c7=\"\" class=\"maxWidth ng-untouched ng…\u003e…\u003c/select\u003e\n  selecting specified option(s)\n    did not find some options - waiting...\n============================================================\nNote: use DEBUG=pw:api environment variable to capture Playwright logs.\n------------------------------------------------------------------------------\nConfigure Car with wrong Acc                                          | FAIL |\nTimeoutError: page.check: Timeout 3000ms exceeded.\n=========================== logs ===========================\nwaiting for selector \"//span[contains(text(),'aABS')]/../input\"\n============================================================\nNote: use DEBUG=pw:api environment variable to capture Playwright logs.\n------------------------------------------------------------------------------\nConfigure Car with car Acc                                            | FAIL |\nTimeoutError: page.click: Timeout 3000ms exceeded.\n=========================== logs ===========================\nwaiting for selector \"[href=\"/config/summary/wrong\"]\"\n============================================================\nNote: use DEBUG=pw:api environment variable to capture Playwright logs.\n------------------------------------------------------------------------------\n01 CarConfig                                                          | FAIL |\n3 tests, 0 passed, 3 failed\n==============================================================================\nOutput:  /Source/RF-Schulung/02_RobotFiles/logs/output.xml\nLog:     /Source/RF-Schulung/02_RobotFiles/logs/log.html\nReport:  /Source/RF-Schulung/02_RobotFiles/logs/report.html\n```\n\nNew Stack Trace Output\n\n```commandline\n❯ robot -d logs --listener RobotStackTracer TestCases/14_Browser/01_CarConfig.robot\n==============================================================================\n01 CarConfig\n==============================================================================\nConfigure Car with Pass                                               ...\n  Traceback (most recent call last):\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/01_CarConfig.robot:23\n    T:  Configure Car with Pass\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/01_CarConfig.robot:28\n      Select aMinigolf as model\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/functional_keywords.resource:14\n      Select Options By    ${select_CarBaseModel}    text    ${basemodel}\n      |  ${select_CarBaseModel} = \"Basismodell\" \u003e\u003e ../.. \u003e\u003e select (str)\n      |  ${basemodel} = aMinigolf (str)\n______________________________________________________________________________\nConfigure Car with Pass                                               | FAIL |\nTimeoutError: page.selectOption: Timeout 3000ms exceeded.\n=========================== logs ===========================\nwaiting for selector \"\"Basismodell\" \u003e\u003e ../.. \u003e\u003e select\"\n  selector resolved to visible \u003cselect _ngcontent-c7=\"\" class=\"maxWidth ng-untouched ng…\u003e…\u003c/select\u003e\n  selecting specified option(s)\n    did not find some options - waiting...\n============================================================\nNote: use DEBUG=pw:api environment variable to capture Playwright logs.\n------------------------------------------------------------------------------\nConfigure Car with wrong Acc                                          ....\n  Traceback (most recent call last):\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/01_CarConfig.robot:38\n    T:  Configure Car with wrong Acc\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/01_CarConfig.robot:43\n      Select Accessory    aABS\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/functional_keywords.resource:38\n      Check Checkbox    //span[contains(text(),'${accessory}')]/../input\n      |  //span[contains(text(),'${accessory}')]/../input = //span[contains(text(),'aABS')]/../input (str)\n______________________________________________________________________________\nConfigure Car with wrong Acc                                          | FAIL |\nTimeoutError: page.check: Timeout 3000ms exceeded.\n=========================== logs ===========================\nwaiting for selector \"//span[contains(text(),'aABS')]/../input\"\n============================================================\nNote: use DEBUG=pw:api environment variable to capture Playwright logs.\n------------------------------------------------------------------------------\nConfigure Car with car Acc                                            ..\n  Traceback (most recent call last):\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/01_CarConfig.robot:51\n    T:  Configure Car with car Acc\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/01_CarConfig.robot:62\n      Set wrong Car Name    ${car}\n      |  ${car} = My New Car (str)\n    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n    File  /Source/RF-Schulung/02_RobotFiles/TestCases/14_Browser/functional_keywords.resource:53\n      Click    ${car_name}\n      |  ${car_name} = [href=\"/config/summary/wrong\"] (str)\n______________________________________________________________________________\nConfigure Car with car Acc                                            | FAIL |\nTimeoutError: page.click: Timeout 3000ms exceeded.\n=========================== logs ===========================\nwaiting for selector \"[href=\"/config/summary/wrong\"]\"\n============================================================\nNote: use DEBUG=pw:api environment variable to capture Playwright logs.\n------------------------------------------------------------------------------\n01 CarConfig                                                          | FAIL |\n3 tests, 0 passed, 3 failed\n==============================================================================\nOutput:  /Source/RF-Schulung/02_RobotFiles/logs/output.xml\nLog:     /Source/RF-Schulung/02_RobotFiles/logs/log.html\nReport:  /Source/RF-Schulung/02_RobotFiles/logs/report.html\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarketsquare%2Frobotframework-stacktrace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarketsquare%2Frobotframework-stacktrace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarketsquare%2Frobotframework-stacktrace/lists"}