Change Toast assertion from 'queue' to 'verbund' to match actual UI text. Remove completed Task 3 docs.
202 lines
5.6 KiB
Markdown
202 lines
5.6 KiB
Markdown
## Task 4: Fix `Robot.Ui.Dashboard.Download Selected`
|
|
|
|
**Test File:** `tests/robot/ui/dashboard.robot`
|
|
|
|
**Error:**
|
|
```
|
|
'Mit Server verbunden' does not contain 'queue'
|
|
```
|
|
|
|
**Context:**
|
|
The test expects a toast notification containing "queue" after clicking download, but the toast message is in German ("Mit Server verbunden" = "Connected to server") and doesn't contain "queue".
|
|
|
|
**Root Cause:**
|
|
The toast message returned by the backend is a German localized string that doesn't include the word "queue". The assertion is checking for English text.
|
|
|
|
**Fix Instructions:**
|
|
Option A: Update the assertion to check for the actual German text or a different keyword:
|
|
```robot
|
|
# Check for German text or successful download indication
|
|
Toast Should Contain verbund
|
|
```
|
|
|
|
Option B: Update the backend to return a consistent toast message regardless of language.
|
|
|
|
Option C: If the download actually succeeds but the toast is different, update the test to verify the download started differently (e.g., check queue count changed).
|
|
|
|
---
|
|
|
|
## Task 5: Fix `Robot.Ui.Settings Modal.Close Settings Modal Via Overlay`
|
|
|
|
**Test File:** `tests/robot/ui/settings_modal.robot`
|
|
|
|
**Error:**
|
|
```
|
|
TimeoutError: locator.click: Timeout 10000ms exceeded.
|
|
Call log:
|
|
- waiting for locator('#config-modal .modal-overlay')
|
|
- attempting click action
|
|
- <label for="anime-directory-input" ...> from <div class="modal-content"> subtree intercepts pointer events
|
|
```
|
|
|
|
**Root Cause:**
|
|
The modal overlay element is being obscured by other elements (the label for anime-directory-input is intercepting pointer events). The click is failing because the element isn't properly accessible.
|
|
|
|
**Fix Instructions:**
|
|
1. Try using `force=True` to bypass actionability checks:
|
|
```robot
|
|
Click css=#config-modal .modal-overlay force=True
|
|
```
|
|
|
|
2. Or try using `page.locator(...).click(position={...})` with coordinates:
|
|
```robot
|
|
Click At Position css=#config-modal .modal-overlay x=0 y=0
|
|
```
|
|
|
|
3. Or try using JavaScript click as a workaround (but use Browser's Evaluate):
|
|
```robot
|
|
Evaluate JavaScript document.querySelector('#config-modal .modal-overlay').click()
|
|
```
|
|
|
|
---
|
|
|
|
## Task 6: Fix `Robot.Ui.Settings Modal.Close Settings Modal Via Escape`
|
|
|
|
**Test File:** `tests/robot/ui/settings_modal.robot`
|
|
|
|
**Error:**
|
|
```
|
|
TimeoutError: locator.waitFor: Timeout 3000ms exceeded.
|
|
```
|
|
|
|
**Root Cause:**
|
|
The modal isn't closing when Escape is pressed. This could be a timing issue or the keyboard event isn't being captured properly.
|
|
|
|
**Fix Instructions:**
|
|
1. Try adding a small delay before pressing Escape:
|
|
```robot
|
|
Open Settings Modal
|
|
Sleep 500ms # Give modal time to fully render
|
|
Press Keys id=config-modal Escape
|
|
Wait For Elements State id=config-modal hidden timeout=3s
|
|
```
|
|
|
|
2. Or try focusing the modal first:
|
|
```robot
|
|
Open Settings Modal
|
|
Click id=config-modal # Focus the modal first
|
|
Press Keys Escape
|
|
Wait For Elements State id=config-modal hidden timeout=3s
|
|
```
|
|
|
|
3. Or use a different locator for the Escape key:
|
|
```robot
|
|
Press Keys None Escape # Press Escape without targeting specific element
|
|
```
|
|
|
|
---
|
|
|
|
## Task 7: Fix `Robot.Ui.Settings Modal.Edit General Settings`
|
|
|
|
**Test File:** `tests/robot/ui/settings_modal.robot`
|
|
|
|
**Error:**
|
|
```
|
|
TimeoutError: locator.check: Timeout 10000ms exceeded.
|
|
```
|
|
|
|
**Root Cause:**
|
|
A checkbox (`id=scheduler-rescan-enabled` or similar) isn't being checked within the timeout. The element might not be visible or interactable.
|
|
|
|
**Fix Instructions:**
|
|
1. Verify the checkbox ID is correct - check the actual HTML in the settings modal
|
|
2. Try using `force=True`:
|
|
```robot
|
|
Check Checkbox id=scheduled-rescan-enabled force=True
|
|
```
|
|
|
|
3. Or use JavaScript to check the checkbox:
|
|
```robot
|
|
Evaluate JavaScript document.getElementById('scheduled-rescan-enabled').checked = true
|
|
```
|
|
|
|
---
|
|
|
|
## Task 8: Fix `Robot.Ui.Settings Modal.Disable Scheduler`
|
|
|
|
**Test File:** `tests/robot/ui/settings_modal.robot`
|
|
|
|
**Error:**
|
|
```
|
|
TimeoutError: locator.check: Timeout 10000ms exceeded.
|
|
```
|
|
|
|
**Root Cause:**
|
|
Similar to Task 7 - checkbox interaction is failing.
|
|
|
|
**Fix Instructions:**
|
|
Same as Task 7. The xpath `//label[contains(., 'Enable Scheduler')]` might not be correct or clicking the label isn't triggering the checkbox properly.
|
|
|
|
Try:
|
|
```robot
|
|
Click //label[contains(., 'Enable Scheduler')] force=True
|
|
```
|
|
Or find the actual checkbox ID and use `Uncheck Checkbox` directly.
|
|
|
|
---
|
|
|
|
## Task 9: Fix `Robot.Ui.Settings Modal.Edit Backup Settings`
|
|
|
|
**Test File:** `tests/robot/ui/settings_modal.robot`
|
|
|
|
**Error:**
|
|
```
|
|
No keyword with name 'Execute JavaScript' found.
|
|
```
|
|
|
|
**Context:**
|
|
Uses `Execute JavaScript` to scroll the modal:
|
|
```robot
|
|
Execute JavaScript document.querySelector('#config-modal .modal-body').scrollTop = 10000
|
|
```
|
|
|
|
**Fix Instructions:**
|
|
Replace with Browser library's scroll method:
|
|
```robot
|
|
# Instead of Execute JavaScript, use:
|
|
Evaluate JavaScript document.querySelector('#config-modal .modal-body').scrollTop = 10000
|
|
```
|
|
|
|
Or use Playwright's built-in scrolling:
|
|
```robot
|
|
# Scroll within the modal content area
|
|
Scroll css=#config-modal .modal-body down
|
|
```
|
|
|
|
---
|
|
|
|
## Task 10: Fix `Robot.Ui.Settings Modal.Edit NFO Settings`
|
|
|
|
**Test File:** `tests/robot/ui/settings_modal.robot`
|
|
|
|
**Error:**
|
|
```
|
|
No keyword with name 'Execute JavaScript' found.
|
|
```
|
|
|
|
**Same fix as Task 9.** Replace `Execute JavaScript` with `Evaluate JavaScript`.
|
|
|
|
---
|
|
|
|
## Task 11: Fix `Robot.Ui.Settings Modal.Create Config Backup`
|
|
|
|
**Test File:** `tests/robot/ui/settings_modal.robot`
|
|
|
|
**Error:**
|
|
```
|
|
No keyword with name 'Execute JavaScript' found.
|
|
```
|
|
|
|
**Same fix as Task 9.** Replace `Execute JavaScript` with `Evaluate JavaScript`.
|
|
|
|
--- |