Skip to main content

AI-powered smart locator with retry functionality for Robot Framework using OpenAI

Project description

Robot Framework AI Fallback Locator

An AI-powered library for Robot Framework that dynamically generates robust element locators when primary locators fail, making your tests more reliable on complex web applications.

Installation

Install the library using pip:

pip install robot-aifallbacklocator

Key Features

  • ID-First Approach: Prioritizes unique element identifiers for maximum robustness
  • AI-Powered Fallback: Uses OpenAI to intelligently locate elements when standard selectors fail
  • Modern Web App Ready: Handles complex DOM structures with nested elements effectively
  • Smart Path Handling: Automatically uses the most reliable XPath patterns for your application
  • Simple Integration: Works seamlessly with existing Robot Framework tests

Usage

Import the library in your Robot Framework test file:

*** Settings ***
Library           SeleniumLibrary
Library           AIFallbackLocator

Define your locators and AI fallback descriptions:

*** Variables ***
${USERNAME_FIELD}      css=#username_id
${AI_USERNAME_FIELD}   the username input field

Use the AI fallback in your tests:

*** Test Cases ***
Login Test
    Open Browser    https://example.com    chrome
    AI Fallback Locator    Input Text    USERNAME_FIELD    myusername
    # OR directly use the resolved variable
    AI Fallback Locator    Input Text    ${USERNAME_FIELD}    myusername
    Close Browser

You can also use custom keywords with fallback:

*** Keywords ***
Wait And Input Text
    [Arguments]    ${locator}    ${text}    ${timeout}=10
    [Documentation]    Input text with AI fallback if the primary locator fails
    ${status}    ${error}=    Run Keyword And Ignore Error    Input Text    ${locator}    ${text}
    Run Keyword If    '${status}' == 'FAIL'    AI Fallback Locator    Input Text    ${locator}    ${text}

How The Selectors Work

The AI Fallback Locator uses a prioritized approach to find elements:

  1. ID-First: If an element has an ID, use it directly: //*[@id='login-button']
  2. Test Attributes: Look for testing-specific attributes: //*[@data-test='username']
  3. Form Attributes: For inputs, use name/placeholder: //*[@placeholder='Enter username']
  4. Meaningful Classes: Only if needed: //*[contains(@class, 'login-button')]

This approach is much more reliable than complex hierarchical selectors and works even in deeply nested DOM structures with forms and dynamic elements.

Configuration

The library can be configured using either environment variables or library parameters.

Using Environment Variables (.env file)

Create a .env file in your project root:

# OpenAI API configuration
OPENAI_API_KEY=your-openai-api-key-here
OPENAI_API_URL=https://api.openai.com/v1/chat/completions
OPENAI_MODEL=gpt-4o

Then simply import the library without parameters:

*** Settings ***
Library    AIFallbackLocator

Using Library Parameters

You can also configure the library using parameters:

*** Settings ***
Library    AIFallbackLocator    api_key=${OPENAI_API_KEY}    model=gpt-4o

Available parameters:

  • api_key: Your OpenAI API key
  • openai_api_url: The OpenAI API URL
  • model: The OpenAI model to use
  • locator_storage_file: Path to store locator comparisons (default: locator_comparison.json)
  • transformation_cache_file: Path to cache transformations

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

robot_aifallbacklocator-1.0.4.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

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

robot_aifallbacklocator-1.0.4-py3-none-any.whl (14.4 kB view details)

Uploaded Python 3

File details

Details for the file robot_aifallbacklocator-1.0.4.tar.gz.

File metadata

  • Download URL: robot_aifallbacklocator-1.0.4.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for robot_aifallbacklocator-1.0.4.tar.gz
Algorithm Hash digest
SHA256 eff83a3cc85de5ecd3d738162c224ad4b6630caffab29d4017d9925107731b16
MD5 3ec7431cab16f19883fb12f2b6db3302
BLAKE2b-256 fda5b3186c6bfdfa2ae39917344b366e7028b3bf85a4511f7600e3c973d5ba0f

See more details on using hashes here.

File details

Details for the file robot_aifallbacklocator-1.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for robot_aifallbacklocator-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9ed77d1e1fda3b96046135ce5b2d0e7f3ed6d9237e95b6fe38583ade5118fc80
MD5 8f9217d632a39b4353a8f21ba804075f
BLAKE2b-256 cd6f48ea77bd5826dec9837646eb0748332e86d84d624fbac661cf0d8e3e42b4

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