Help with website F6S

Hi there I faced with the issue

  1. that can't scroll down more than one time on the page, after scroll down appers new content https://www.f6s.com/jobs?keywords[]=remote&keywords[]=react&sort=newest&sort_dir=desc

  2. i need to click on the Company name (https://www.f6s.com/replikasoftware)


    Url: https://www.f6s.com/jobs?keywords[]=remote&keywords[]=react&sort=newest&sort_dir=desc

  3. from this page i need to collect Multiple(can be more than 2):
    Company linkedin, Founder name, Founder position

  4. go to next page of each founders https://www.f6s.com/coreygottlieb
    Collect linkedin account of each page of founders(can be multiple

Sitemap:
{"_id":"f6s","startUrl":["https://www.f6s.com/jobs?keywords[]=remote&keywords[]=react&sort=newest&sort_dir=desc"],"selectors":[{"id":"scroll","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":"div.main-content","multiple":true,"delay":"1000"},{"id":"row","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.bordered-list-item:nth-of-type(1)","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["row"],"selector":".title a","multiple":false,"regex":"","delay":0},{"id":"company","type":"SelectorText","parentSelectors":["row"],"selector":"span a","multiple":false,"regex":"","delay":0},{"id":"city","type":"SelectorText","parentSelectors":["row"],"selector":".subtitle span","multiple":false,"regex":"","delay":0},{"id":"www","type":"SelectorText","parentSelectors":["row"],"selector":".result-extra > span","multiple":false,"regex":"","delay":0},{"id":"page","type":"SelectorLink","parentSelectors":["row"],"selector":"span a","multiple":false,"delay":0},{"id":"cat","type":"SelectorText","parentSelectors":["page"],"selector":".cover-skills div.cover-skills","multiple":false,"regex":"","delay":0},{"id":"link","type":"SelectorLink","parentSelectors":["page"],"selector":"a.link-linkedin","multiple":false,"delay":0},{"id":"founders","type":"SelectorElement","parentSelectors":["page"],"selector":".connection-template.sidebar-block-item div.flex-wrapper","multiple":true,"delay":0},{"id":"fffd","type":"SelectorLink","parentSelectors":["founders"],"selector":"a.main","multiple":false,"delay":0},{"id":"flink","type":"SelectorLink","parentSelectors":["fffd"],"selector":"a.link-linkedin","multiple":false,"delay":0},{"id":"type","type":"SelectorText","parentSelectors":["fffd"],"selector":".profile-types-wrapper span","multiple":false,"regex":"","delay":0}]}

This will execute the scroll correctly:

{"_id":"f6s","startUrl":["https://www.f6s.com/jobs?keywords[]=remote&keywords[]=react&sort=newest&sort_dir=desc"],"selectors":[{"id":"row","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":"div.bordered-list-item","multiple":true,"delay":2000},{"id":"name","type":"SelectorText","parentSelectors":["row"],"selector":".title a","multiple":false,"regex":"","delay":0},{"id":"company","type":"SelectorText","parentSelectors":["row"],"selector":"span a","multiple":false,"regex":"","delay":0},{"id":"city","type":"SelectorText","parentSelectors":["row"],"selector":".subtitle span","multiple":false,"regex":"","delay":0},{"id":"www","type":"SelectorText","parentSelectors":["row"],"selector":".result-extra > span","multiple":false,"regex":"","delay":0},{"id":"page","type":"SelectorLink","parentSelectors":["row"],"selector":"span a","multiple":false,"delay":0},{"id":"cat","type":"SelectorText","parentSelectors":["page"],"selector":".cover-skills div.cover-skills","multiple":false,"regex":"","delay":0},{"id":"link","type":"SelectorLink","parentSelectors":["page"],"selector":"a.link-linkedin","multiple":false,"delay":0},{"id":"founders","type":"SelectorElement","parentSelectors":["page"],"selector":".connection-template.sidebar-block-item div.flex-wrapper","multiple":true,"delay":0},{"id":"fffd","type":"SelectorLink","parentSelectors":["founders"],"selector":"a.main","multiple":false,"delay":0},{"id":"flink","type":"SelectorLink","parentSelectors":["fffd"],"selector":"a.link-linkedin","multiple":false,"delay":0},{"id":"type","type":"SelectorText","parentSelectors":["fffd"],"selector":".profile-types-wrapper span","multiple":false,"regex":"","delay":0}]}

thank you, that was easy)

how to stop this scroll after for example 5 minutes?

this scraper never stop(((

You can limit the scroller by using nth-of-type.

Just change the row selector to:
div > div.bordered-list-item:nth-of-type(-n+77)

That would give you abound 77 results; you can change the number to what you require.