...18import org.junit.runner.RunWith;19import org.junit.runners.Suite;20import org.openqa.selenium.support.events.EventFiringWebDriverTest;21import org.openqa.selenium.support.pagefactory.AjaxElementLocatorTest;22import org.openqa.selenium.support.pagefactory.AnnotationsTest;23import org.openqa.selenium.support.pagefactory.ByAllTest;24import org.openqa.selenium.support.pagefactory.ByChainedTest;25import org.openqa.selenium.support.pagefactory.DefaultElementLocatorTest;26import org.openqa.selenium.support.pagefactory.DefaultFieldDecoratorTest;27import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandlerTest;28import org.openqa.selenium.support.pagefactory.internal.LocatingElementListHandlerTest;29import org.openqa.selenium.support.ui.ExpectedConditionsTest;30import org.openqa.selenium.support.ui.FluentWaitTest;31import org.openqa.selenium.support.ui.HowTest;32import org.openqa.selenium.support.ui.LoadableComponentTest;33import org.openqa.selenium.support.ui.QuotesTest;34import org.openqa.selenium.support.ui.SelectTest;35import org.openqa.selenium.support.ui.SlowLoadableComponentTest;36import org.openqa.selenium.support.ui.WebDriverWaitTest;37@RunWith(Suite.class)38@Suite.SuiteClasses({39 AjaxElementLocatorTest.class,40 AnnotationsTest.class,41 ByChainedTest.class,42 ByAllTest.class,43 ColorTest.class,44 DefaultElementLocatorTest.class,45 DefaultFieldDecoratorTest.class,46 EventFiringWebDriverTest.class,47 ExpectedConditionsTest.class,48 FluentWaitTest.class,49 HowTest.class,50 LoadableComponentTest.class,51 LocatingElementHandlerTest.class,52 LocatingElementListHandlerTest.class,53 PageFactoryTest.class,54 SelectTest.class,...