com.epam.healenium.handlers.proxy.SelfHealingProxyInvocationHandler Maven / Gradle / Ivy
The newest version!
/**
* Healenium-web Copyright (C) 2019 EPAM
* 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 com.epam.healenium.handlers.proxy;
import com.epam.healenium.SelfHealingEngine;
import lombok.extern.slf4j.Slf4j;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver.TargetLocator;
import org.openqa.selenium.WebElement;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
@Slf4j(topic = "healenium")
public class SelfHealingProxyInvocationHandler extends BaseHandler implements InvocationHandler {
public SelfHealingProxyInvocationHandler(SelfHealingEngine engine) {
super(engine);
}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
ClassLoader loader = driver.getClass().getClassLoader();
switch (method.getName()) {
case "findElement":
WebElement element = findElement((By) args[0]);
if (engine.isProxy()) {
return element;
}
return Optional.ofNullable(element).map(it -> wrapElement(it, loader)).orElse(null);
case "findElements":
List elements = findElements((By) args[0]);
if (engine.isProxy()) {
return elements;
}
return elements.stream().map(it -> wrapElement(it, loader)).collect(Collectors.toList());
case "getCurrentEngine":
return engine;
case "getDelegate":
return driver;
case "switchTo":
TargetLocator switched = (TargetLocator) method.invoke(driver, args);
return wrapTarget(switched, loader);
case "quit":
quit();
default:
return method.invoke(driver, args);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy