@@ -626,12 +626,16 @@ release: tag_major_minor release_grid_scaler
626626
627627test : test_chrome \
628628 test_chrome_standalone \
629+ test_chrome_standalone_java \
629630 test_chromium \
630631 test_chromium_standalone \
632+ test_chromium_standalone_java \
631633 test_firefox \
632634 test_firefox_standalone \
635+ test_firefox_standalone_java \
633636 test_edge \
634- test_edge_standalone
637+ test_edge_standalone \
638+ test_edge_standalone_java
635639
636640test_chrome :
637641 case " $( PLATFORMS) " in \
@@ -655,6 +659,17 @@ test_chrome_standalone:
655659 ;; \
656660 esac
657661
662+ test_chrome_standalone_java :
663+ case " $( PLATFORMS) " in \
664+ *linux/amd64*) \
665+ echo "Google Chrome is only supported on linux/amd64" \
666+ && PLATFORMS=linux/amd64 VERSION=$(TAG_VERSION) NAMESPACE=$(NAMESPACE) BASE_RELEASE=$(BASE_RELEASE) BASE_VERSION=$(BASE_VERSION) BINDING_VERSION=$(BINDING_VERSION) SKIP_BUILD=true ./tests/SeleniumJavaTests/bootstrap_java.sh chrome standalone-chrome \
667+ ;; \
668+ *) \
669+ echo "Google Chrome doesn't support platform $(PLATFORMS)" ; \
670+ ;; \
671+ esac
672+
658673test_edge :
659674 case " $( PLATFORMS) " in \
660675 *linux/amd64*) \
@@ -677,6 +692,17 @@ test_edge_standalone:
677692 ;; \
678693 esac
679694
695+ test_edge_standalone_java :
696+ case " $( PLATFORMS) " in \
697+ *linux/amd64*) \
698+ echo "Microsoft Edge is only supported on linux/amd64" \
699+ && PLATFORMS=linux/amd64 VERSION=$(TAG_VERSION) NAMESPACE=$(NAMESPACE) BASE_RELEASE=$(BASE_RELEASE) BASE_VERSION=$(BASE_VERSION) BINDING_VERSION=$(BINDING_VERSION) SKIP_BUILD=true ./tests/SeleniumJavaTests/bootstrap_java.sh edge standalone-edge \
700+ ;; \
701+ *) \
702+ echo "Microsoft Edge doesn't support platform $(PLATFORMS)" ; \
703+ ;; \
704+ esac
705+
680706test_firefox_download_lang_packs :
681707 FIREFOX_VERSION=$(or $(FIREFOX_VERSION ) , $$(curl -sk https://product-details.mozilla.org/1.0/firefox_versions.json | jq -r '.LATEST_FIREFOX_VERSION' ) ) ; \
682708 ./NodeFirefox/get_lang_package.sh $$ FIREFOX_VERSION ./tests/target/firefox_lang_packs
@@ -688,12 +714,18 @@ test_firefox: test_firefox_download_lang_packs
688714test_firefox_standalone :
689715 PLATFORMS=$(PLATFORMS ) VERSION=$(TAG_VERSION ) NAMESPACE=$(NAMESPACE ) BASE_RELEASE=$(BASE_RELEASE ) BASE_VERSION=$(BASE_VERSION ) BINDING_VERSION=$(BINDING_VERSION ) SKIP_BUILD=true ./tests/bootstrap.sh StandaloneFirefox
690716
717+ test_firefox_standalone_java :
718+ PLATFORMS=$(PLATFORMS ) VERSION=$(TAG_VERSION ) NAMESPACE=$(NAMESPACE ) BASE_RELEASE=$(BASE_RELEASE ) BASE_VERSION=$(BASE_VERSION ) BINDING_VERSION=$(BINDING_VERSION ) SKIP_BUILD=true ./tests/SeleniumJavaTests/bootstrap_java.sh firefox standalone-firefox
719+
691720test_chromium :
692721 PLATFORMS=$(PLATFORMS ) VERSION=$(TAG_VERSION ) NAMESPACE=$(NAMESPACE ) BASE_RELEASE=$(BASE_RELEASE ) BASE_VERSION=$(BASE_VERSION ) BINDING_VERSION=$(BINDING_VERSION ) SKIP_BUILD=true ./tests/bootstrap.sh NodeChromium
693722
694723test_chromium_standalone :
695724 PLATFORMS=$(PLATFORMS ) VERSION=$(TAG_VERSION ) NAMESPACE=$(NAMESPACE ) BASE_RELEASE=$(BASE_RELEASE ) BASE_VERSION=$(BASE_VERSION ) BINDING_VERSION=$(BINDING_VERSION ) SKIP_BUILD=true ./tests/bootstrap.sh StandaloneChromium
696725
726+ test_chromium_standalone_java :
727+ PLATFORMS=$(PLATFORMS ) VERSION=$(TAG_VERSION ) NAMESPACE=$(NAMESPACE ) BASE_RELEASE=$(BASE_RELEASE ) BASE_VERSION=$(BASE_VERSION ) BINDING_VERSION=$(BINDING_VERSION ) SKIP_BUILD=true ./tests/SeleniumJavaTests/bootstrap_java.sh chrome standalone-chromium
728+
697729test_parallel : hub chrome firefox edge chromium video
698730 sudo rm -rf ./tests/tests
699731 sudo rm -rf ./tests/videos; mkdir -p ./tests/videos
0 commit comments