XCUITest not auto-scrolling to off screen elements like UIAutomation did?

When I was using Appium 1.5 with UIAutomation, if there was a control off screen, I could still issue a findElement and action against it and it would “auto-scroll” the element into view and then perform the action. Now with Appium 1.6, and XCUITest, trying to take an action against a element off screen no longer seems to work. Do we now have to scroll it into view first, kinda like Android?

I will answer my own question by actually reading the great migration readme that the devs came up with…

With XCUITest, we are indeed now responsible for ensuring your element is in view before interacting with it (the same way a user would be responsible for the same).