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?
Asked
Active
Viewed 137 times
0
-
what have you found online? Do you have some code that is not working to show? – Wookies-Will-Code Feb 13 '19 at 17:48
1 Answers
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