Add CDP Mode methods for handling <input> Sliders and <select> Dropdowns
Specifically, I want to handle these:
These methods should be added into the API:
sb.cdp.set_value(selector, text)
sb.cdp.select_option_by_text(dropdown_selector, option)
Eg:
sb.cdp.set_value("input#mySlider", "100")
sb.cdp.select_option_by_text("#mySelect", "Set to 75%")