Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions modules/get-started/pages/quick-start.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -176,17 +176,18 @@ image::console:overview.png[]
// (step {"checkLink": "http://localhost:8080/login", "statusCodes": 200})
// (step {"goTo": "http://localhost:8080/login"})
// (step {"wait": 30000})
// (step {"find": {"selector": "[data-testid='auth-username-input']", "click": true, "type": "superuser"}})
// (step {"find": {"selector": "[data-testid='auth-password-input']", "click": true, "type": "secretpassword"}})
// (step {"find": {"selector": "button", "elementText": "Log in", "click": true}})
// (step {"find": {"selector": "[data-testid='auth-username-input']", "timeout": 10000, "click": true, "type": "superuser"}})
// (step {"find": {"selector": "[data-testid='auth-password-input']", "timeout": 10000, "click": true, "type": "secretpassword"}})
// (step {"find": {"selector": "button", "elementText": "Log in", "timeout": 10000, "click": true}})
// (step {"wait": 30000})
// (step {"checkLink": "http://localhost:8080/overview", "statusCodes": 200})
// (step {"goTo": "http://localhost:8080/overview"})
// (step {"wait": 30000})
// (step {"screenshot": {"path": "../../modules/console/images/overview.png", "overwrite": "aboveVariation", "maxVariation": 10}})

To view details about a specific broker, click *View* at the end of the row in the *Broker Details* table.

// (step {"find": {"selector": ".chakra-table tbody tr:last-child td:last-child button", "elementText": "View", "click": true}})
// (step {"find": {"selector": ".chakra-table tbody tr:last-child td:last-child button", "elementText": "View", "timeout": 30000, "click": true}})
// (step {"wait": 15000})
// (step {"screenshot": {"path": "../../modules/console/images/broker-overview.png", "overwrite": "aboveVariation", "maxVariation": 10}})

Expand Down
2 changes: 1 addition & 1 deletion tests/setup-tests/fetch-versions-and-rpk.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"description": "Use doc-tools to install any additional test dependencies.",
"runShell": {
"command": "npx doc-tools install-test-dependencies",
"timeout": 120000
"timeout": 300000
}
},
{
Expand Down
Loading