Session/Login Extractor
Pricing
Pay per usage
Session/Login Extractor
Automates login flows and extracts session data. Supports MFA with TOTP code. You can use this actor if you need to access website with authentication.
0.0 (0)
Pricing
Pay per usage
0
Total users
22
Monthly users
10
Runs succeeded
99%
Issues response
23 hours
Last modified
2 months ago
email input not found
Open
Hey there,
any idea why selector #email is not being found on https://shop.krannich-solar.com/account/login ? The Cookie click works fine!?
[ { "action": "click", "selector": "#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll", "waitForNavigation": true }, { "action": "type", "selector": "#email", "value": "hallo@basic-solar.de" }, { "action": "type", "selector": "#password", "value": "pazzword", "pressEnter": true }, { "action": "click", "selector": "#submit" } ]

pragmaticcoders (pragmaticcoders)
hey, I see that there are 4 elements found for selector #email
on this page, try to use eq
param
cz-bs
Thanks, that was a good hint, yet the error remains (sorry I didn't mention directly):
2025-05-28T11:39:47.129Z ERROR Error: Waiting for selector #email
failed: Waiting failed: 30000ms exceeded

pragmaticcoders (pragmaticcoders)
please paste your updated steps
cz-bs
[ { "action": "click", "selector": "#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll", "waitForNavigation": true }, { "action": "type", "selector": ".email", "value": "hallo@basic-solar.de", "eq": "first" }, { "action": "type", "selector": "#password", "value": "pazzword", "pressEnter": true } ]