All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spring.spring-selenium-analytics.xml Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:ctx="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context
                           http://www.springframework.org/schema/context/spring-context.xsd">

  <bean id="helper" class="org.jspringbot.keyword.selenium.SeleniumHelper">
    <constructor-arg ref="webdriver"/>
    <property name="screenCaptureDir" value="${selenium.screenshot.folder}"/>
    <property name="autoZoomIn" value="${selenium.browser.auto.zoom.in:0}"/>
    <property name="autoZoomOut" value="${selenium.browser.auto.zoom.out:0}"/>
  </bean>
  
  <bean id="debugger" class="org.jspringbot.keyword.selenium.OmnitureDebugger">
    <property name="autoZoomIn" value="${selenium.browser.auto.zoom.in:0}"/>
    <property name="autoZoomOut" value="${selenium.browser.auto.zoom.out:0}"/>
  </bean>
    
  <bean class="org.jspringbot.keyword.selenium.OmnitureDebuggerBean">
    <constructor-arg ref="debugger"/>
    <property name="omnitureDebuggerLocation" value="${omniture.debugger.location:http://sitecatalyst.omniture.com/sc_tools/stats_debugger.html}"/>
  	<property name="omnitureDebuggerWaitTimeInMillis" value="${omniture.debugger.wait.time.in.millis:3000}"/>
  	<property name="omnitureDebuggerPreviousPageClickEventWaitTimeInMillis" value="${omniture.debugger.previous.page.click.event.wait.time.in.millis:800}"/>
  </bean>
  
  <!-- Scan components -->
  <ctx:component-scan base-package="org.jspringbot.keyword.selenium.analytics"/>
  <ctx:annotation-config/>
</beans>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy