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.3.tar.gz (18.0 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.3-py3-none-any.whl (20.6 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for locatai-0.1.3.tar.gz
Algorithm Hash digest
SHA256 1639e570473116f51d6c88606607c153a148fe884b4494d110a714a84d7790da
MD5 616d6daf5ebfe4d6a35c4b52f8f4027a
BLAKE2b-256 8e971a2a144bdc59566237c73f5c3269058db31febb93c89b03fe76cee4093a7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for locatai-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7f328cfb87b29f930974be53ecf6a0521a9e3f737b787de1486bbb572944be83
MD5 29a548f42f13e32ceb85891ac3966ac3
BLAKE2b-256 00da652402381e98a713447f326b3f9a23324d0eb24c9d36726e8da93b557d8e

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