Skip to content

Commit 7a9a544

Browse files
committed
correct dimensions on windows
1 parent 91dea93 commit 7a9a544

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/selenium-ide/scripts/ide-runner.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ async function main() {
102102
1000
103103
)
104104
await record.click()
105+
105106
let handles2 = await driver.getAllWindowHandles()
106107
while (handles2.length < 2) {
107108
await driver.sleep(100)

packages/selenium-ide/src/main/session/controllers/ResizablePanels/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ export default class ResizablePanelsController extends BaseController {
4646
const offset = { x: 0, y: 0 }
4747
switch (process.platform) {
4848
case 'win32':
49-
offset.x = 12
50-
offset.y = 21
49+
offset.x = 6
50+
offset.y = 24
5151
break
5252
case 'darwin':
5353
offset.x = 0

0 commit comments

Comments
 (0)