RPA Framework Core Utilities

12.1.1 · active · verified Tue Apr 14

rpaframework-core is a support package providing core functionality and utilities for the broader RPA Framework, which is a collection of open-source libraries and tools for Robotic Process Automation (RPA). It is designed to be used with both Robot Framework and Python. The library is actively maintained with a regular release cadence, typically seeing multiple releases per year.

Warnings

Install

Imports

Quickstart

This quickstart demonstrates how to use a library (RPA.Browser.Selenium) that relies on `rpaframework-core` for its underlying functionality, such as webdriver management. Direct usage of `rpaframework-core` components by end-users is generally discouraged.

import os
from RPA.Browser.Selenium import Selenium

browser_lib = Selenium()

def open_example_website():
    browser_lib.open_available_browser("https://www.google.com")
    title = browser_lib.get_title()
    print(f"Opened website with title: {title}")
    browser_lib.close_all_browsers()

if __name__ == "__main__":
    # rpaframework-core provides underlying utilities for libraries like RPA.Browser.Selenium.
    # For typical usage, install 'rpaframework' and import specific RPA libraries.
    open_example_website()

view raw JSON →