diff --git a/src/test/kotlin/org/nexial/core/plugins/web/WebDriverHelperTest.kt b/src/test/kotlin/org/nexial/core/plugins/web/WebDriverHelperTest.kt index ee4999c..96f69b3 100644 --- a/src/test/kotlin/org/nexial/core/plugins/web/WebDriverHelperTest.kt +++ b/src/test/kotlin/org/nexial/core/plugins/web/WebDriverHelperTest.kt @@ -178,6 +178,13 @@ class WebDriverHelperTest { @Test @Throws(Exception::class) fun downloadChromeHeadlessDriver() { + val osArch = System.getProperty("os.arch") + if (StringUtils.equals(osArch, "aarch64")) { + // skipping this test for ARM64 because we can't get the driver from the same driver download page + println("skipping resolveChromeDriver() test for $osArch system since we can't auto-download driver") + return; + } + val driverHome = File("${driverHomeBase}chrome") FileUtils.deleteDirectory(driverHome)