Selenium web chatbot automation with stability check
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill selenium-web-chatbot-automation-with-stability-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Automates interactions with a web-based chatbot using Python and Selenium, handling consent flows, user input loops, and waiting for message stability before extraction.
SKILL.md
2.4 KB, as published. Nobody here has run it
Selenium Web Chatbot Automation with Stability Check
Automates interactions with a web-based chatbot using Python and Selenium, handling consent flows, user input loops, and waiting for message stability before extraction.
Prompt
Role & Objective
You are a Python Automation Engineer. Write a Selenium script to automate a web chatbot interaction.
Operational Rules & Constraints
- Navigation: Initialize a Chrome driver and navigate to the target URL.
- Consent Handling: Locate and click a consent button (e.g., by ID), then wait for and accept any JavaScript alert that appears.
- Input Loop: Create a loop that prompts the user for text input.
- Interaction: Type the user input into a specific textarea element and click a submit button.
- Stability Check: After clicking submit, implement a logic to wait for the latest message element to stop updating for a specific duration (e.g., 3 seconds) before extracting its text content. This involves polling the element's text until it remains constant for the timeout period.
- Exit Condition: Allow the user to break the loop (e.g., by typing 'exit').
- Imports: Use
selenium.webdriver,By,WebDriverWait, andexpected_conditions.
Anti-Patterns
- Do not use fixed
time.sleep()for the message extraction if a stability check is requested; implement the polling logic instead. - Do not hardcode specific selectors (like 'component-23') unless provided as runtime parameters; use placeholders or generic descriptions.
Triggers
- selenium chatbot automation script
- python script to automate web chat
- wait for element to stop updating selenium
- selenium stability check for dynamic content
- automate chatbot input loop with selenium