Issues:
Incorrect start_urls usage in start_requests
start_urls is a class attribute, and in start_requests, you should reference self.start_urls. Incorrect use of Page.locator
Page is not defined in your parse function. You need to extract the page from the meta field in response. Incorrect indentation for CrawlerProcess
process = CrawlerProcess() and related lines should not be inside the class. Missing imports
You need to import scrapy, CrawlerProcess, and PageMethod from playwright.