NSelene
NSelene copied to clipboard
think on some way to customize some non-standard actions like "select in dropdown"
Selenide in Java has something element.select(value) to be used with dropdown elements. But it works only with classic html <select
elements. That's why we don't have such "too specific" action in SeleneElement. But maybe we can add it, providing some generic way to customize it's implementation through passing a custom class with proper implementation?
Just some crazy ideas:
S("#sex").Select<MyCustomDropDown>("woman")