/******************************************************************************* * ATE, Automation Test Engine * * Copyright 2015, Montreal PROT, or individual contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Montreal PROT. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ package org.bigtester.ate.test.model.page.elementaction; import org.bigtester.ate.GlobalUtils; import org.bigtester.ate.model.page.atewebdriver.exception.BrowserUnexpectedException; import org.bigtester.ate.model.page.elementaction.DropdownListSelectAction; import org.bigtester.ate.model.page.elementaction.ITestObjectAction; import org.bigtester.ate.model.data.exception.RuntimeDataException; import org.bigtester.ate.model.page.exception.PageValidationException; import org.bigtester.ate.model.page.exception.StepExecutionException; import org.bigtester.ate.model.page.page.MyWebElement; import org.bigtester.ate.test.BigtesterProjectTest; import org.openqa.selenium.By; import org.openqa.selenium.support.ui.Select; import org.springframework.test.context.ContextConfiguration; import org.testng.Assert; import org.testng.annotations.Test; /** * * @author Peidong Hu * */ @ContextConfiguration(locations = { "classpath:bigtesterTestNG/testSuite01/dropDownList.xml" }) public class DropdownSelectActionTest extends BigtesterProjectTest { /** * Ead test. * * @throws RuntimeDataException * @throws PageValidationException * @throws StepExecutionException * @throws InterruptedException * @throws BrowserUnexpectedException */ @Test(priority = 1) public void mainTest() throws PageValidationException, RuntimeDataException, StepExecutionException, InterruptedException, BrowserUnexpectedException { getTestPage("bigtesterTestNG/aut/dropdownList.html"); MyWebElement<?> ead = (MyWebElement<?>) getApplicationContext() .getBean("eadTestDropdownListSelect"); ead.doAction(); Thread.sleep(3000); ITestObjectAction<?> testobj = (ITestObjectAction<?>) ead .getTestObjectAction(); if (testobj == null) { Assert.assertTrue(false); } else { String selections = ((DropdownListSelectAction) GlobalUtils .getTargetObject(testobj)).getSelections(); Select actualVal = new Select(getMyDriver().getWebDriverInstance() .findElements(new By.ByTagName("select")).get(0)); Assert.assertTrue(selections.equals(actualVal .getFirstSelectedOption().getText())); } } }