Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
3a7e997
feat(app): make sidebar status chips the single-select test filter
vishnuv688 Jun 12, 2026
ad6dab3
feat(app): color action durations by per-step heat; fix(app): consist…
vishnuv688 Jun 12, 2026
a46167b
feat(app): timeline chips, connector rail, and active-row highlight
vishnuv688 Jun 12, 2026
0b297f6
fix(app): extend timeline rail across all actions
vishnuv688 Jun 12, 2026
b85c2cc
feat(app): port the dashboard UI to the redesign mockup
vishnuv688 Jun 15, 2026
f6dbe28
fix(service,nightwatch): hide automation infobar on the dashboard window
vishnuv688 Jun 15, 2026
a9f3a28
Merge branch 'main' into vv/devtools-new-ui
vishnuv688 Jun 15, 2026
0ae49cd
feat: Screencast scrubber with action markers
vishnuv688 Jun 15, 2026
714331b
feat: Sync screencast playback with action timeline and source
vishnuv688 Jun 15, 2026
a636b11
style: Align dashboard layout and components with redesign mockup
vishnuv688 Jun 15, 2026
485ffe6
fix: Theme-adaptive light mode, segmented toggle, and screencast polish
vishnuv688 Jun 15, 2026
d922ab1
feat: Redesign Network panel
vishnuv688 Jun 16, 2026
1f16a2e
feat: Redesign Metadata tab as collapsible cards
vishnuv688 Jun 16, 2026
4464403
feat: Redesign Metadata tab as collapsible cards
vishnuv688 Jun 16, 2026
f2abcde
feat: Console and Log new layout design
vishnuv688 Jun 16, 2026
a2845bb
feat: iframe url mapping
vishnuv688 Jun 16, 2026
920fe93
fix: select one action per click and resolve its page URL from commands
vishnuv688 Jun 16, 2026
bdcf439
refactor: move console level filters to the filter module and drop de…
vishnuv688 Jun 16, 2026
9736cca
fix: attribute preserved baseline commands by source location
vishnuv688 Jun 16, 2026
37de7b5
feat: redesign the Compare tab to match the devtools mockup
vishnuv688 Jun 16, 2026
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
2 changes: 1 addition & 1 deletion examples/nightwatch/nightwatch.conf.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = {
'--headless',
'--no-sandbox',
'--disable-dev-shm-usage',
'--window-size=1600,1200'
'--window-size=1600,900'
]
},
'goog:loggingPrefs': { performance: 'ALL' }
Expand Down
2 changes: 1 addition & 1 deletion examples/wdio/wdio.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const config: Options.Testrunner = {
'--headless',
'--disable-gpu',
'--remote-allow-origins=*',
'--window-size=1600,1200'
'--window-size=1600,900'
]
}
// }, {
Expand Down
8 changes: 6 additions & 2 deletions packages/app/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ import { TraceType, type TraceLog } from '@wdio/devtools-shared'
import { Element } from '@core/element'
import { DataManagerController } from './controller/DataManager.js'
import { DragController, Direction } from './utils/DragController.js'
import { SIDEBAR_MIN_WIDTH, DARK_MODE_KEY } from './controller/constants.js'
import {
SIDEBAR_MIN_WIDTH,
SIDEBAR_DEFAULT_WIDTH,
DARK_MODE_KEY
} from './controller/constants.js'
import { POPOUT_QUERY } from './components/workbench/compare/constants.js'

// Bootstrap the dark-mode class on <body> as early as possible so popout
Expand Down Expand Up @@ -65,7 +69,7 @@ export class WebdriverIODevtoolsApplication extends Element {
#drag = new DragController(this, {
localStorageKey: 'sidebarWidth',
minPosition: SIDEBAR_MIN_WIDTH,
initialPosition: window.innerWidth * 0.2,
initialPosition: SIDEBAR_DEFAULT_WIDTH,
getContainerEl: () => this.#getWindow(),
direction: Direction.horizontal
})
Expand Down
36 changes: 36 additions & 0 deletions packages/app/src/components/browser/browser-chrome.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import type { nothing } from 'lit'
import { html, type TemplateResult } from 'lit'

import '~icons/mdi/world.js'
import '~icons/mdi/lock.js'

/** The browser-frame chrome: traffic-light dots, address bar (with a lock for
* https), and a slot for the Snapshot/Screencast view toggle. Extracted from
* the snapshot component so that file stays focused on capture/replay. */
export function renderBrowserChrome(
displayUrl: string | undefined,
viewToggle: TemplateResult | typeof nothing
): TemplateResult {
return html`
<header
class="flex items-center mx-2 bg-sideBarBackground rounded-t-[14px]"
>
<div class="frame-dot bg-notificationsErrorIconForeground"></div>
<div class="frame-dot bg-notificationsWarningIconForeground"></div>
<div class="frame-dot bg-portsIconRunningProcessForeground"></div>
<div
class="flex items-center mx-4 my-2 pr-2 bg-input-background text-inputForeground border border-editorSuggestWidgetBorder rounded leading-7 flex-1 min-w-0 overflow-hidden"
>
${displayUrl?.startsWith('https')
? html`<icon-mdi-lock
class="w-[16px] h-[16px] m-1 mr-2 flex-shrink-0 text-chartsGreen"
></icon-mdi-lock>`
: html`<icon-mdi-world
class="w-[20px] h-[20px] m-1 mr-2 flex-shrink-0"
></icon-mdi-world>`}
<span class="truncate">${displayUrl}</span>
</div>
${viewToggle}
</header>
`
}
Loading
Loading