public int GetRowIndex(string rowId)
        {
            _longWait.Until(d => GridContent.Exists());
            Rows.WaitUntilAny();
            int idColumnIndex = GetColumnIndex(_idColumnName);

            return(Rows.GetIndex(rowId, IdSelector));
        }