@@ -626,12 +626,16 @@ release: tag_major_minor release_grid_scaler
626
626
627
627
test : test_chrome \
628
628
test_chrome_standalone \
629
+ test_chrome_standalone_java \
629
630
test_chromium \
630
631
test_chromium_standalone \
632
+ test_chromium_standalone_java \
631
633
test_firefox \
632
634
test_firefox_standalone \
635
+ test_firefox_standalone_java \
633
636
test_edge \
634
- test_edge_standalone
637
+ test_edge_standalone \
638
+ test_edge_standalone_java
635
639
636
640
test_chrome :
637
641
case " $( PLATFORMS) " in \
@@ -655,6 +659,17 @@ test_chrome_standalone:
655
659
;; \
656
660
esac
657
661
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
+
658
673
test_edge :
659
674
case " $( PLATFORMS) " in \
660
675
*linux/amd64*) \
@@ -677,6 +692,17 @@ test_edge_standalone:
677
692
;; \
678
693
esac
679
694
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
+
680
706
test_firefox_download_lang_packs :
681
707
FIREFOX_VERSION=$(or $(FIREFOX_VERSION ) , $$(curl -sk https://product-details.mozilla.org/1.0/firefox_versions.json | jq -r '.LATEST_FIREFOX_VERSION' ) ) ; \
682
708
./NodeFirefox/get_lang_package.sh $$ FIREFOX_VERSION ./tests/target/firefox_lang_packs
@@ -688,12 +714,18 @@ test_firefox: test_firefox_download_lang_packs
688
714
test_firefox_standalone :
689
715
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
690
716
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
+
691
720
test_chromium :
692
721
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
693
722
694
723
test_chromium_standalone :
695
724
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
696
725
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
+
697
729
test_parallel : hub chrome firefox edge chromium video
698
730
sudo rm -rf ./tests/tests
699
731
sudo rm -rf ./tests/videos; mkdir -p ./tests/videos
0 commit comments