Skip to main content

AI-powered element locator for Selenium WebDriver

Project description

LocatAI

AI-powered element locator for Selenium WebDriver.

Overview

LocatAI is an innovative Python package that uses AI to find web elements based on natural language descriptions, making your Selenium tests more reliable and easier to maintain. Instead of brittle CSS selectors or XPath expressions, you can use natural language to describe the elements you want to interact with.

Features

  • Natural Language Element Finding: Locate elements using plain English descriptions
  • Smart Caching: Reduces API calls and improves performance
  • Automatic Timeout Management: Dynamically adjusts timeouts based on historical performance
  • Detailed Error Diagnostics: Helps debug element location failures
  • Usage Analytics: Tracks API usage, cache efficiency, and success rates

Installation

Install the package using pip:

pip install locatai

Environment Setup

LocatAI uses OpenAI's API for element location. You need to set up your API key:

  1. Create a .env file in your project's root directory
  2. Add your OpenAI API key to the file:
OPENAI_API_KEY=your_openai_api_key_here
  1. Important: Add the .env file to your .gitignore to prevent accidentally committing your API key

The package uses the python-dotenv library to automatically load this key when needed.

Basic Usage

from selenium import webdriver
from locatai import ElementFinder

# Initialize WebDriver
driver = webdriver.Chrome()
driver.get("https://example.com")

# Find an element using natural language
login_button = ElementFinder.FindElementByAI(driver, "Login button")
login_button.click()

# Find multiple elements
item_cards = ElementFinder.FindElementsByAI(driver, "product cards")
print(f"Found {len(item_cards)} products")

Advanced Usage

Smart Timeouts

LocatAI automatically adjusts wait times based on historical performance:

# Default timeout will be used (smart timeout based on element history)
submit_button = ElementFinder.FindElementByAI(driver, "Submit button") 

# Override with a custom timeout in seconds
menu_item = ElementFinder.FindElementByAI(driver, "Settings menu item", timeout=15)

Tracking API Usage

Monitor your OpenAI API usage and performance metrics:

from locatai import AIUsageTracker

# Get usage statistics
report = AIUsageTracker.get_instance().get_report()
print(f"API Calls: {report['api_calls']}")
print(f"Cache Hit Rate: {report['cache_hit_rate']:.1%}")
print(f"Estimated Cost: ${report['estimated_cost']:.4f}")

See the examples directory for more advanced usage patterns.

How It Works

LocatAI analyzes the current DOM of your web page and uses AI to determine the most reliable selector strategy for your element description. It prioritizes the most stable selectors (ID, name) when available, and falls back to CSS selectors or XPath when needed.

The package includes:

  • Smart caching to reduce API calls for previously seen elements
  • Automatic retries with different locator strategies
  • Detailed error diagnostics when elements can't be found
  • Performance tracking to optimize timeouts

Troubleshooting

API Key Issues

  • Ensure your .env file is in the correct location (project root directory)
  • Verify your API key is valid and has access to the required OpenAI models
  • Check that the environment variable name is exactly OPENAI_API_KEY

Element Not Found Issues

  • Try using more specific element descriptions
  • Ensure the element is visible in the DOM when the finder method is called
  • Check if the element is inside an iframe (switch to it first)
  • Increase the timeout for elements that take longer to load

Contributing

Contributions are welcome! Please feel free to submit a Pull Request to https://github.com/Divyarajsinh-Dodia/locatai.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

locatai-0.1.0.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

locatai-0.1.0-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file locatai-0.1.0.tar.gz.

File metadata

  • Download URL: locatai-0.1.0.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for locatai-0.1.0.tar.gz
Algorithm Hash digest
SHA256 3b32519041130b65341f8025a922cf3284b725e1dd12457ad4bf4de283aa224c
MD5 e56752fd59f407897c4b5b36e5fb408a
BLAKE2b-256 6105329dad6936dc341cd32e90aa6fe39a7d9fb5f9187be69e401760de0448c9

See more details on using hashes here.

File details

Details for the file locatai-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: locatai-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for locatai-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8f686194cc173d8b34c8bb4e079cc61e2bd62e09366d2f488210f05033320c76
MD5 def9b903cc042b38c15d12643f98d071
BLAKE2b-256 c7b343166a1c2c2444f4101629376b1dce7b2b15dff02c319230c0cd2637cfe0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page