Job has worked for 1+ months, now fails

This scraping job has worked for 1+ months.

It now fails with FAILED_TO_CONNECT_TO_CHROME_TAB {"message":"Could not establish connection. Receiving end does not exist."} at getRootElement with []

Any attempts to use webscraper extension on https://www.sec.gov/ix?doc=/Archives/edgar/data/934549/000093454924000023/actg-20231231.htm results in error
FAILED_TO_CONNECT_TO_CHROME_TAB {"message":"Could not establish connection. Receiving end does not exist."} at getRootElement with []

Web Scraper version: 1.75.7

Chrome version: 122.0.6261.129

OS: Windows 11

Link to the site you were scraping: https://www.sec.gov/ix?doc=/Archives/edgar/data/934549/000093454924000023/actg-20231231.htm

Sitemap (Please make the sitemap as minimal as possible so it’s easier to replicate the bug. You can export the sitemap by opening it and choosing “Export Sitemap” in the dropdown menu):
{"_id":"SEC10kDaily","startUrl":["https://www.sec.gov/cgi-bin/current?q1=0&q2=0&q3="],"selectors":[{"id":"LinkToCompanyPage","linkType":"linkFromAttributes","multiple":true,"parentSelectors":["_root"],"selector":"[href*=Archives]","type":"SelectorLink"},{"id":"LinkTo10K","linkType":"linkFromHref","multiple":false,"parentSelectors":["LinkToCompanyPage"],"selector":"[summary='Document Format Files'] tr:nth-of-type(2) a","type":"SelectorLink"},{"id":"WebpageText","multiple":true,"parentSelectors":["LinkTo10K"],"regex":"","selector":"div.main-container","type":"SelectorText"},{"id":"CompanyName","multiple":false,"parentSelectors":["LinkToCompanyPage"],"regex":".*(?= \()","selector":"span.companyName","type":"SelectorText"},{"id":"SIC","multiple":false,"parentSelectors":["LinkToCompanyPage"],"regex":"","selector":"b a","type":"SelectorText"}]}


**Log Information** (Screen Record):
https://drive.proton.me/urls/R3JGAR6EDR#nEaJKMBniu7T

Follow up here, steps to reproduce:
Step 1: visit https://www.sec.gov/ix?doc=/Archives/edgar/data/934549/000093454924000023/actg-20231231.htm
Step 2: create a new sitemap
Step 3: try to add a collector

Confirmation that this defect is limited to the SEC web page and similar pages. For example, this is adding a selector on Yelp:

Vs trying to add one on the SEC 10K


from URL https://www.sec.gov/ix?doc=/Archives/edgar/data/1736243/000155837024003401/acxp-20231231x10k.htm

your data is located in a separate IFRAME: iframe id="ixvFrame"
so you should collect all your links on documents at first. Afterwards, you can you Excel to generate a real document links to scrape what you need... There is no problem at all...

I'm unfortunately unclear how to use your instructions to fix the issue. The issue is that I'd like to download the full text of the document. I'd genuinely appreciate it if you could give me the specific combination of 'type' and 'selector' and the selector text, as your documentation (from Selectors | Web Scraper Documentation) does not cover how to select text from an iframe. I also wasn't able to find a forum post explaining how to collect the text from an iframe.

I've tried a few things based on a forum post that I saw (Using iframe:iframe properly - #4 by leemeng), which led me to try this
iframe:iframe ixvFrame

As well as the text you provided.
IFRAME: iframe id="ixvFrame"

iframe id="ixvFrame"
image

Please help.

All your efforts are totally wrong.... not that way, man....
At first - you can collect all your document links, which lead on the page with iframe... There is no way to deal with it unless you specify exact URL with document text.
So, after you receive all your links - you can download them and change it from:

(https://www.sec.gov/ix?doc=/Archives/edgar/data/1736243/000155837024003401/acxp-20231231x10k.htm)

to

https://www.sec.gov/ixviewer/ix.html?doc=/Archives/edgar/data/1736243/000155837024003401/acxp-20231231x10k.htm

absolutely easy task....

Thank you for your clarification. I appreciate your help!