Copy from the text based website

I want to copy some info from this website, how can i do that ?

this is my country earthquake list and its update frequencly

here is the web site, and i write here that line what i want to copy

2023.05.30 17:41:28 37.0805 28.4278 7.4 -.- 1.6 -.- YESILOVA-ULA (MUGLA)

http://www.koeri.boun.edu.tr/scripts/lst9.asp

I have looked at the site and in my opinion it is a very difficult job to follow.
You could try to search for the term you are interested in and then with Xtype select the row and copy it but it is a complex job that must be done with desktop automation and shorcut to select the rows and copy them.

If you try with web automation it extracts all the merged text and you may not have the lines you are interested in

{
  "Name": "teeeeeest",
  "CreationDate": "2023-5-31",
  "Commands": [
    {
      "Command": "executeScript",
      "Target": "const table = document.querySelector(\"pre\").innerHTML.match(/(\\d{4}\\.\\d{2}\\.\\d{2}).*İlksel$/gm)\n\nreturn table",
      "Value": "table",
      "Description": ""
    },
    {
      "Command": "forEach",
      "Target": "table",
      "Value": "item",
      "Description": ""
    },
    {
      "Command": "echo",
      "Target": "${item}",
      "Value": "",
      "Description": ""
    },
    {
      "Command": "end",
      "Target": "",
      "Value": "",
      "Description": ""
    }
  ]
}

1 Like

Congratulations for the excellent solution proposed, it works perfectly