DT is blank

Hi,
I am facing this issue while automating. I have made a clone of my existing DT to keep a copy before I make the changes. But the clone is coming blank can you please let me know what’s the issue.

PFA the .xaml file below.

IRCTC Cancel Refund Robot.xaml (81.0 KB)

hi @shrayud …Dttable.clone method does not copy all the records to other datatable. it’s just copies the schema to the new dt.

See the below screenshot, I have cloned dtIn to dtcorrected and printed the dtcorrected which just shows the column names…

So, if you want to a backup use datatable.copy method…see below…

Here is the reference:

2 Likes

Thanks!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.