keyword_input = wait_for_element(
driver,
By.XPATH,
'/html/body/div[12]/div[2]/div/div/div/main/form/div[14]/div/div[2]/input',
description="Keyword input field"
)
if keyword_input:
keyword_input.click()
keyword_input.clear()
keyword_input.send_keys(keywords[i + 1])
time.sleep(1)
else:
print("❌ Keyword input not found.")
continue
Error:
⚠️ Less than 22 items, skipping export.
➡️ Preparing to input next keyword...
Found Edit Filters button
Timeout waiting for Keyword input field
❌ Keyword input not found.
🔍 Searching with keyword: frida baby get-a-grip teether
⏳ Waiting for results to load...
Found 'Viewing' text
'Viewing' text detected: Viewing 0-0 of 0 items
Found items count text (specific)
📦 Found 0 items for 'frida baby get-a-grip teether'
⚠️ Less than 22 items, skipping export.
➡️ Preparing to input next keyword...
Found Edit Filters button
❌ Error updating filters for next keyword: Message: Element <button class="sc-iKOmoZ ilSVPa" type="button"> is not clickable at point (1594,281) because another element <div class="sc-cMHQto fvEFVp"> obscures it
I want to go to the title keyword input and change its value, but it's not working.
