This commit is contained in:
Tobias Klemp
2025-11-02 20:40:27 +01:00
commit e7bd070b3e
67 changed files with 3205 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Effect } from 'effect'
import type { Page } from 'puppeteer'
import { getVariations } from '.'
const BATTERY_CONTAINER_SELECTOR = '.new_battery_options'
export const getBatteryVariations = (page: Page) =>
Effect.gen(function* () {
return yield* getVariations(page, BATTERY_CONTAINER_SELECTOR, 'DIV')
})