Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Copyright 2007-2009 WebDriver committers
- Copyright 2007-2009 Google Inc.
- 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.openqa.selenium.support.pagefactory;
- import org.openqa.selenium.WebElement;
- import org.openqa.selenium.internal.Locatable;
- import org.openqa.selenium.internal.WrapsElement;
- import org.openqa.selenium.support.pagefactory.internal.LocatingElementHandler;
- import java.lang.reflect.Field;
- import java.lang.reflect.InvocationHandler;
- import java.lang.reflect.Proxy;
- public class CustomFieldDecorator implements FieldDecorator {
- protected ElementLocatorFactory factory;
- public CustomFieldDecorator(ElementLocatorFactory factory) {
- this.factory = factory;
- }
- public Object decorate(ClassLoader loader, Field field) {
- if (!WebElement.class.isAssignableFrom(field.getType())) {
- return null;
- }
- ElementLocator locator = factory.createLocator(field);
- if (locator == null) {
- return null;
- }
- return proxyForLocator(loader, locator, field);
- }
- protected Object proxyForLocator(ClassLoader loader,
- ElementLocator locator, Field field) {
- InvocationHandler handler = new LocatingElementHandler(locator);
- WebElement proxy;
- proxy = (WebElement) Proxy.newProxyInstance(
- loader, new Class[] {WebElement.class, WrapsElement.class, Locatable.class}, handler);
- if(field.getType() == Button.class){
- return new Button(proxy);
- }
- return proxy;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment