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    api_key=${OPENAI_API_KEY}

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.

API Key Setup

Store your OpenAI API key in a .env file or provide it when initializing the library:

*** Settings ***
Library    AIFallbackLocator    api_key=${OPENAI_API_KEY}

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.2.tar.gz (17.0 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.2-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: robot_aifallbacklocator-1.0.2.tar.gz
  • Upload date:
  • Size: 17.0 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.2.tar.gz
Algorithm Hash digest
SHA256 fb0577fd41b676e0acbd29a7a5dcbd3ccf0bd1ed194c314967f6cdbc6270217e
MD5 85b3d8c94f3c7798feea9bd04d65df39
BLAKE2b-256 dd60b941e8d151d6beafdf56d195b037a38f420368f9795408fb79847d4ca761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robot_aifallbacklocator-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4e082fe7885d03e2dfce23c80335bd10797760949b4270d698df804e5540cb43
MD5 14f1eae686eb818d9af64d379790fead
BLAKE2b-256 746132a6906f666d81a8b0f9a804bf6af7c935718f70f5f3e97348d168f889c3

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