MCPcopy
hub / github.com/stitionai/devika / __init__

Method __init__

src/browser/interaction.py:158–168  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

156
157class Crawler:
158 def __init__(self):
159 self.browser = (
160 sync_playwright()
161 .start()
162 .chromium.launch(
163 headless=True,
164 )
165 )
166
167 self.page = self.browser.new_page()
168 self.page.set_viewport_size({"width": 1280, "height": 1080})
169
170 def screenshot(self, project_name):
171 screenshots_save_path = Config().get_screenshots_dir()

Callers

nothing calls this directly

Calls 1

startMethod · 0.80

Tested by

no test coverage detected