aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/onap/sdc/ci/tests/utilities/EcompPortalUtilities.java
blob: 97938c7410a5d40fe2dcfac255c89fb6d183b355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.sdc.ci.tests.utilities;

import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;

public class EcompPortalUtilities {

	public static void swichFrames(By by){
		WebElement appImage = GeneralUIUtils.getClickableButtonBy(by, 3 * 60);
		appImage.click();
		GeneralUIUtils.getDriver().switchTo().frame(1);
		GeneralUIUtils.waitForAngular();
		GeneralUIUtils.getWebElementByClassName("applicationWindow");
	}

}