Is there a way to move UISlider
under UITests
target in Xcode? I really need to move it from code. Is it possible?
Get your slider:
let app = XCUIApplication()
let timeSlider = app.sliders["timeSlider"]
Adjust its value:
timeSlider.adjustToNormalizedSliderPosition(0.9)