1.0.6 • Published 5 years ago

quasiris-search-data-picker v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Search Date Picker - Fast and simple collection of search-specific browser events

Search Date Picker is awesome tool!

Getting started

Install Demo

npm run dev

Example Configuration

 import SearchDataPicker from "quasiris-search-data-picker";
 const contextResolver = new SearchDataPicker.ContextResolver(window, window.document);
 
 const picker = new SearchDataPicker.Picker(
   {
     'contextResolver': contextResolver,
     'endpoint': 'quasiris.de'
   });
 
 picker.add(new SearchDataPicker.ClickPicker('documents',
   'body > div > section.products > div > div', {
     'selectors': [
       {
         key: 'title',
         selectors: '.info > h3'
       },
       {
         key: 'price',
         selectors: '.info > h5'
       }
     ],
     'attributes': [
       {
         key: 'id',
         attributes: 'id'
       },
       {
         key: 'class',
         attributes: 'class'
       }
 
     ]
   }));
 
 
 
 picker.start();
1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.3

5 years ago

1.0.0

5 years ago