Session/Login Extractor avatar
Session/Login Extractor

Pricing

Pay per usage

Go to Store
Session/Login Extractor

Session/Login Extractor

Developed by

pragmaticcoders

pragmaticcoders

Maintained by Community

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

29

Monthly users

11

Runs succeeded

>99%

Issues response

8.3 days

Last modified

3 months ago

CB

email input not found

Open

cz-bs opened this issue
a month ago

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 avatar

hey, I see that there are 4 elements found for selector #email on this page, try to use eq param

CB

cz-bs

a month ago

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 avatar

please paste your updated steps

CB

cz-bs

a month ago

[ { "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 } ]

pragmaticcoders avatar

.email will not work as this is a class selector, you should use #email with eq "last". Try { "action": "type", "selector": "#email", "value": "hallo@basic-solar.de", "eq": "last" }

CB

cz-bs

a month ago

Thanks, I actually tried both already, no effect.