Scraping Config Page

Hello Community,

I´m trying to scrape my FXO gateway status from its web config page without any sucess for last two weeks. I tried using both scrape & multiscrape integrations. below is a screenshot of Inspect page.

Im trying to extract status of “Line 1” as a sensor. Can someone pls help me how to write the sensor?

So far i was trying with Claude.AI and used below yaml code for Multiscrape


multiscrape:
  - resource: "http://192.168.2.104/Line_status.asp"
    name: Router Line Status
    authentication: basic
    username: root
    password: testpassword123
    scan_interval: 60
    sensor:
      - unique_id: router_debug_table
        name: "Router Table Debug"
        select: 'table[width="100%"][cellspacing="1"]'
        value_template: "{{ value[:200] | default('Table not found', true) }}"

Above gives sensor value of “Line Account Registered Call State 1 2 3 4” which is the left column of table. I dont know how to obtain just one value.

TIA