private async void set_URL(WindowFoUrl windowURL)
        {
            string tempUrl = windowURL.textBox.Text;

            bool isUrlExist = await _helperService.IsUrlExistAsync(url);

            if (isUrlExist)
            {
                url = tempUrl;
            }

            windowURL.Close();
        }