0

I am trying get the table of web page however I was not able to do that.
Can any one tell me the code that gets the table from web page by using ITable interface in .NET with LeanFT?

Adelin
  • 7,809
  • 5
  • 37
  • 65
Naresh
  • 19
  • 2

1 Answers1

0

To get a table from the web page it's just like getting any other element from the web page: use the browser.Describe method and provide the exact element description

var table = browser.Describe<ITable>(new TableDescription
{
    Id = @"someHtmlId"
});

If Id is not a property you can use, here's the entire list that you can choose from: TableDescription documentation

Adelin
  • 7,809
  • 5
  • 37
  • 65