ブラウザから表抽出を行いたい

開いたブラウザから表抽出自体はできてますが、抽出設定した際のURLページからしか取得できていません。
ブラウザURLは動的に検索できるよう変数を採用し設定してあります。
以下が現在の設定画面になります。
やりたいこととしてブラウザURLページから表抽出を行いたいです。

@seki_i

what you have done should be extracting from the browser…are you getting any error?

cheers

The problem is that only fixed data can be retrieved.

What I want to achieve is to extract the information from the page, assuming that the displayed page changes depending on the value of the URL variable.

@seki_i

Is the table structure changing?

If yes then you cannot extract as the schema definition changes

If structure is not changing but only url then it would extract

If structure is changing then better to use get attribute and get the table selector and get the innerhtml of the table selector and then manually convert to datatable by iterating through it

Cheers