Open Serporit opened 4 years ago
Found a problem.
splitCamelCase method is used twice here and adds spaces every time (it would be nice to update it as well)
Fix: com.epam.jdi.light.elements.init.InitActions:142
$("Smart Text", aRule(SText.class, (e, a) -> e.setLocator(asTextLocator(splitCamelCase(e.getName()))))),
->
$("Smart Text", aRule(SText.class, (e, a) -> e.setLocator(asTextLocator(e.getName())))),