Second row of data returning null

Hello , I am trying to scrape data from the table in the screenshot below, I tried with the table sector but it did not work so I followed the instructions for scrapping multiple records from the same page starting with an element selector (parent) then child text selectors. Some text selectors work but some retrieve only the data from the first row then returns "Null" for all rows after the first one.

I am including the sitemap export and the data preview showing null from the second row onward for the "Status" field

Please let me know what is wrong

The sitemap Export:

{"_id":"one","startUrl":["Amazon Sign In span.mt-text-content","type":"SelectorText"},{"delay":0,"id":"Title","multiple":false,"parentSelectors":["Line"],"regex":"","selector":"a.mt-table-main","type":"SelectorText"},{"delay":0,"id":"Q_Avail","multiple":false,"parentSelectors":["Line"],"regex":"","selector":".mt-right div.mt-layout-inline","type":"SelectorText"},{"delay":0,"id":"Total_Fee","multiple":false,"parentSelectors":["Line"],"regex":"","selector":"a.np-widget-inline-text","type":"SelectorText"},{"delay":0,"id":"Status","multiple":false,"parentSelectors":["Line"],"regex":"","selector":"#aHhvLjUyMy4zNTk5Mjk1Ny4xOA_e_e-status-status span","type":"SelectorText"}]}

Hello,
I'm new with Webscrapper but I had the same problem. If I remember well, the reason was a bad CSS selection. With Inspector, look at the HTML and CSS. Is the CSS same for each line for "Status" ? I suppose you click on the element to select the CSS automaticaly. Your selector contains #aHhvLjUyMy4zNTk5Mjk1Ny4xOA. Is it the same for other "Status" ? Probably no. As it's not possible to select the CSS of this, look at the CSS of its parent. For example, the span can be in a div or in p or in td. Look at its CSS. For example <span class="#aHhvLjUyMy4zNTk5Mjk1Ny4xOA.........>the_text
Thus, in Webscrapper, in the Selector Status, enter the css .status span in Selector (in the block after Data preview). So Webscrapper will crawl all span with parent .status (for my example of course)
Sorry, I'm French, I hope it's understandable :wink: