Exemple #1
0
        public void NewArrivalTest()
        {
            FootishScrapper    scraper  = new FootishScrapper();
            SearchSettingsBase settings = new SearchSettingsBase();

            settings.KeyWords = "nike air";


            scraper.ScrapeAllProducts(out var lst, ScrappingLevel.PrimaryFields, CancellationToken.None);
            Helpers.Helper.PrintFindItemsResults(lst);
        }
Exemple #2
0
        public void FindItemsTest()
        {
            FootishScrapper    scraper  = new FootishScrapper();
            SearchSettingsBase settings = new SearchSettingsBase();

            settings.KeyWords = "nike air";


            scraper.FindItems(out var lst, settings, CancellationToken.None);
            Helpers.Helper.PrintFindItemsResults(lst);
        }
Exemple #3
0
        public void GetProductDetailsTest()
        {
            Product curProduct = new Product(new FootishScrapper(), "Unknown",
                                             "https://www.footish.se/en/sneakers/nike-air-footscape-nm-852629-001",
                                             420,
                                             "https://www.footish.se/pub_images/large/nike-air-max-2017-at0044-001-p21554.jpg",
                                             "30136");


            FootishScrapper scraper = new FootishScrapper();

            ProductDetails details = scraper.GetProductDetails(curProduct.Url, CancellationToken.None);

            Debug.WriteLine(details.Name);
            Debug.WriteLine(details.Price);
            Debug.WriteLine(details.Currency);
            Debug.WriteLine(details.ImageUrl);
            Debug.WriteLine(details.StoreName);
            Debug.WriteLine(details.Url);

            Helper.PrintGetDetailsResult(details.SizesList);
        }