def click_reply_to_review()

in pages/desktop/frontend/reviews.py [0:0]


        def click_reply_to_review(self):
            reply = self.wait.until(
                expected.element_to_be_clickable(self._reply_to_review_locator),
                message="Reply button was not loaded",
            )
            reply.click()
            self.wait.until(
                expected.element_to_be_clickable(self._review_reply_textarea_locator),
                message="Reply text area was not opened",
            )