• This function collects data from the selected rows in an HTML table and returns it as an array of objects.

    Returns object[]

    An array of objects, each representing a row of data from the table. The keys in each object correspond to the table's headers, and the values correspond to the cell data in the corresponding row.

    Remarks

    This function fetches all the headers from the HTML table with class .thead-dark th and stores them in an array. It then selects all rows with the .row-selected-problems class and for each row, it creates an object. The keys of this object are the headers and the values are the corresponding cells' text content. This way, it effectively converts the table data into a more easily manipulable format.

Generated using TypeDoc