private void OpenAlbumViewForGettingPhotos(string currentProfileDataPath)
        {
            _userProfilePage.ClickOnShowAllAlbums();
            //Thread.Sleep(700);

            if (_profilePhotosCount != 0)
            {
                _userProfilePage.WaitToAlbumView();
                //Get Profile Photos
                string profilePhotosPath = Path.Combine(currentProfileDataPath, "ProfilePhoto.jpg");
                GetPhotos(profilePhotosPath, () =>
                {
                    _userProfilePage.ClickOnAlbumByAlbumNumber(0);
                }, _profilePhotosCount);
            }

            if (_galleryPhotosCount != 0)
            {
                _userProfilePage.WaitToAlbumView();
                //Get Gallery Photos
                string galleryPhotosPath = Path.Combine(currentProfileDataPath, "GalleryPhoto.jpg");
                GetPhotos(galleryPhotosPath, () =>
                {
                    _userProfilePage.ClickOnAlbumByAlbumNumber(1);
                }, _galleryPhotosCount);
            }

            if (_userProfilePage.IsAlbumViewOpened())
            {
                _userProfilePage.ClosePhotosView();
            }
        }