We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e733045 commit 4639480Copy full SHA for 4639480
yCHMUITests/yCHMUITests.swift
@@ -68,12 +68,8 @@ class yCHMUITests: XCTestCase {
68
app.typeKey("g", modifierFlags: [.command, .shift])
69
let sheet = openDialog.sheets.firstMatch
70
XCTAssert(sheet.waitForExistence(timeout: 5))
71
- let goButton = openDialog.buttons["Go"]
72
- let input = sheet.comboBoxes.firstMatch
73
- XCTAssert(goButton.exists)
74
- XCTAssert(input.exists)
75
- input.typeText(chmpath)
76
- goButton.click()
+ sheet.typeText(chmpath)
+ sheet.typeText("\n")
77
openButton.click()
78
}
79
0 commit comments