Skip to content

Commit ba17306

Browse files
use direct url
1 parent db1dceb commit ba17306

File tree

4 files changed

+5
-446
lines changed

4 files changed

+5
-446
lines changed

src/e2eIosTest/java/io/appium/java_client/ios/BaseIOSWebViewTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,16 @@
1717
package io.appium.java_client.ios;
1818

1919
import io.appium.java_client.ios.options.XCUITestOptions;
20-
import io.appium.java_client.utils.TestUtils;
2120
import org.junit.jupiter.api.BeforeAll;
2221
import org.openqa.selenium.SessionNotCreatedException;
2322

2423
import java.io.IOException;
24+
import java.net.URL;
2525
import java.time.Duration;
2626
import java.util.function.Supplier;
2727

28+
import static io.appium.java_client.utils.TestUtils.IOS_SIM_VODQA_RELEASE_URL;
29+
2830
public class BaseIOSWebViewTest extends BaseIOSTest {
2931
private static final Duration WEB_VIEW_DETECT_INTERVAL = Duration.ofSeconds(2);
3032
private static final Duration WEB_VIEW_DETECT_DURATION = Duration.ofSeconds(30);
@@ -38,7 +40,7 @@ public static void beforeClass() throws IOException {
3840
.setDeviceName(DEVICE_NAME)
3941
.setWdaLaunchTimeout(WDA_LAUNCH_TIMEOUT)
4042
.setCommandTimeouts(Duration.ofSeconds(240))
41-
.setApp(TestUtils.fetchIosSimVodQaApp().toString());
43+
.setApp(new URL(IOS_SIM_VODQA_RELEASE_URL));
4244
if (PREBUILT_WDA_PATH != null) {
4345
options.usePreinstalledWda().setPrebuiltWdaPath(PREBUILT_WDA_PATH);
4446
}

src/test/java/io/appium/java_client/utils/GitHubReleaseFetcher.java

Lines changed: 0 additions & 218 deletions
This file was deleted.

0 commit comments

Comments
 (0)