From 4b97bdde0b01a227c8ab41acc623170e67aa6598 Mon Sep 17 00:00:00 2001 From: Tristan Labelle Date: Sat, 26 Oct 2024 14:49:50 -0400 Subject: [PATCH] Decomment code --- Tests/WinAppDriverTests/RequestsTests.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tests/WinAppDriverTests/RequestsTests.swift b/Tests/WinAppDriverTests/RequestsTests.swift index 5ab0c8c..87ca2a9 100644 --- a/Tests/WinAppDriverTests/RequestsTests.swift +++ b/Tests/WinAppDriverTests/RequestsTests.swift @@ -24,10 +24,10 @@ class RequestsTests: XCTestCase { app = nil } - // func testCanGetChildElements() throws { - // let children = try XCTUnwrap(app.listView.findElements(locator: .xpath("//ListItem"))) - // XCTAssert(children.count > 0) - // } + func testCanGetChildElements() throws { + let children = try XCTUnwrap(app.listView.findElements(locator: .xpath("//ListItem"))) + XCTAssert(children.count > 0) + } func testStatusReportsWinAppDriverOnWindows() throws { let status = try XCTUnwrap(app.session.webDriver.status)