File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212name : Maven Deploy
1313
1414on :
15+ workflow_dispatch :
16+ push :
17+ branches : [ release/6.11 ]
1518 workflow_call :
1619 inputs :
1720 ref :
2730
2831 - name : Get Secrets from GCP Secret Manager
2932 id : ' secrets'
30- uses : ' google-github-actions/get-secretmanager-secrets@v0 '
33+ uses : ' google-github-actions/get-secretmanager-secrets@v2 '
3134 with :
3235 secrets : |-
3336 CDAP_OSSRH_USERNAME:cdapio-github-builds/CDAP_OSSRH_USERNAME
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ the License.-->
1818 <modelVersion >4.0.0</modelVersion >
1919 <groupId >io.cdap.tests.e2e</groupId >
2020 <artifactId >cdap-e2e-framework</artifactId >
21- <version >0.4.2-SNAPSHOT </version >
21+ <version >0.4.2</version >
2222
2323 <name >CDAP e2e Framework</name >
2424 <description >Framework for CDAP e2e Tests</description >
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public class SeleniumDriver {
4949 ChromeOptions chromeOptions = new ChromeOptions ();
5050 chromeOptions .addArguments ("--no-sandbox" );
5151 chromeOptions .addArguments ("--disable-setuid-sandbox" );
52- chromeOptions .addArguments ("--headless" );
52+ chromeOptions .addArguments ("--headless=new " );
5353 chromeOptions .addArguments ("--window-size=" + SeleniumHelper .readParameters ("windowSize" ));
5454 chromeOptions .addArguments ("--disable-gpu" );
5555 chromeOptions .addArguments ("--disable-dev-shm-usage" );
@@ -62,7 +62,6 @@ public class SeleniumDriver {
6262 chromePrefs .put ("download.default_directory" , downloadDir );
6363 chromeOptions .setExperimentalOption ("prefs" , chromePrefs );
6464 chromeDriver = new ChromeDriver (service , chromeOptions );
65- chromeDriver .manage ().window ().maximize ();
6665 HttpCommandExecutor executor = (HttpCommandExecutor ) chromeDriver .getCommandExecutor ();
6766 url = executor .getAddressOfRemoteServer ();
6867 waitDriver = new WebDriverWait (chromeDriver , ConstantsUtil .DEFAULT_TIMEOUT_SECONDS );
Original file line number Diff line number Diff line change 11# Selenium browser window size
2- windowSize =1920x1040
2+ windowSize =1920,1040
33# CDAP application url
44cdfurl =http://localhost:11011/pipelines/ns/default/studio
55# CDAP Wrangler connections page url
You can’t perform that action at this time.
0 commit comments