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

com.seleniumtests.util.ide.IdeHashMap Maven / Gradle / Ivy

The newest version!
package com.seleniumtests.util.ide;

import com.seleniumtests.core.TestStepManager;
import com.seleniumtests.reporter.logger.TestStep;
import org.checkerframework.checker.units.qual.K;

import java.util.HashMap;

public class IdeHashMap extends HashMap {
    
    @Override
    public V put(K key, V value) {
        TestStep currentStep = TestStepManager.getCurrentRootTestStep();
        if (currentStep != null
                && key != null
                && value != null
                && (key.toString().toLowerCase().contains("pwd")
        || key.toString().toLowerCase().contains("password")
        || key.toString().toLowerCase().contains("passwd")
        )) {
            currentStep.addPasswordToReplace(value.toString());
        }
        
        return super.put(key, value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy