pageBack() not working
What is the syntax for adding pageBack() call? Also for the device's common back button can this be used We added like await driver.elementClick(pageBack()); but devices back button click didn't happen
I guess.... like https://github.com/search?q=repo%3Aappium%2Fappium-flutter-driver+pageBack+path%3A%2F%5Eexample%5C%2F%2F&type=code ...? If the command sent base64 command to the DartVM, possibly it is in Dart/Flutter side I assume
I have the same issue, but I'm using Python. I can find pageBack(), but I can't perform any actions on it. Looking at the Appium server log, it shows {"command":"tap","finderType":"PageBack"}, but it just hangs and nothing happens.
I use Android Studio with this driver = self.cache_app._current_application() back_finder = FlutterFinder().page_back() back_element = FlutterElement(driver, back_finder) back_element.click()