How do we handle scraping data where a table has rowspan or columnspan not equal to one ?
Merged cells in table
hey @mohitb ,
in this case you need to make a seperate function to implement the task you need to perform on such cells.
You can identify cells with rowspan using get_attribute function or get_property , and then you need to furthere customly process it to get the valuable data out of it.
I hope this helps.