org.suren.autotest.web.framework.AutoApplicationConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autotest.web.framework Show documentation
Show all versions of autotest.web.framework Show documentation
基于Selenium的自动化测试框架Phoenix,采用Java语言编写的。到目前为止,已经覆盖了WebUI自动化测试过程中需要的大部分功能封装。
The newest version!
/*
* Copyright 2002-2007 the original author or authors.
*
* 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.suren.autotest.web.framework;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.ImportResource;
import org.suren.autotest.web.framework.log.Image4SearchLog;
import org.suren.autotest.web.framework.mail.MailConfig;
/**
* Spring零配置
* @author suren
* @since 2017年6月8日 上午8:21:10
*/
@Configuration
@ComponentScan({"com.surenpi.autotest.webui",
"org.suren.autotest.web.framework",
"com.surenpi.autotest.datasource"
})
@ImportResource({"classpath:autoTestContext.xml", "classpath:beanScope.xml"})
@Import({
Image4SearchLog.class,
MailConfig.class
})
public class AutoApplicationConfig
{
}