How can I get the scraped stuff on the same row?

Hi,

now hours gone to solve my little pagination-problem. This is the website: https://firmen.standort-sachsen.de/company/de/

first pls click this path:
Erweiterte Suche -> Region: "Region Chemnitz"-> Suchen
Click on the first company: .DIGITAL CONNECT web content management

In the right corner you can see: this is page 1/14207
On every page i want to scrape the Name of the company, the mail-adress and "region". Then: click the button "next" (to reach 2/11880), scrape the same of this company, click "next" again (to reach 3/11880) and so on...but: I cant get it! I tried it with element click selector and the Link selector...it scrapes the stuff, but not as an Element; means: the scraped stuff of the companies is in the CSV not on the same row.

Would be great to get some help. Thank you! <3

Because the website is java (or flash, dont know), you have to clicked urself through the path above. Afterwards you can probably use this sitemap:

{"_id":"firmen_sachsen_chemn","startUrl":["https://firmen.standort-sachsen.de/company/de/detail/76435/1/digital-connect-web-content-management/"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a[aria-label='Next']","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["_root","pagination"],"selector":"h1","multiple":true,"regex":"","delay":0},{"id":"mail","type":"SelectorText","parentSelectors":["_root","pagination"],"selector":"a.email.kwec-link-icon","multiple":true,"regex":"","delay":0},{"id":"region","type":"SelectorText","parentSelectors":["_root","pagination"],"selector":".col-xs-12 div.row:nth-of-type(1) div.col-xs-12.col-sm-6","multiple":true,"regex":"","delay":0}]}

Hi,

You can try this one
I put mail and region in an Element. I was not able to put the name in the same element but it works fine. You have all the data on the same row.

{"_id":"firmen","startUrl":["https://firmen.standort-sachsen.de/company/de/detail/76435/1/digital-connect-web-content-management/"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a[aria-label='Next']","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["_root","pagination"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"mail","type":"SelectorText","parentSelectors":["element"],"selector":"a.email.kwec-link-icon","multiple":false,"regex":"","delay":0},{"id":"region","type":"SelectorText","parentSelectors":["element"],"selector":".col-xs-12 div.row:nth-of-type(1) div.col-xs-12.col-sm-6","multiple":true,"regex":"","delay":0},{"id":"element","type":"SelectorElement","parentSelectors":["_root","pagination"],"selector":"div.box-gray","multiple":false,"delay":0}]}

Thanks for your help!