diff --git a/README.md b/README.md index e4bc497..c851d18 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Locatr package helps you to find HTML locators on a webpage using prompts and llms. ## Overview -- LLM based HTML locator finder. +- LLM based HTML element path finder. - Re-rank support for improved accuracy. - Supports playwright, selenium, cdp. - Uses cache to reduce calls to llm apis. @@ -434,4 +434,4 @@ Schema of the json file: ### Contributing -We welcome contributions! Please read our [CONTRIBUTING.md](CONTRIBUTING.md) guide to get started. \ No newline at end of file +We welcome contributions! Please read our [CONTRIBUTING.md](CONTRIBUTING.md) guide to get started. diff --git a/python_client/README.md b/python_client/README.md index 9266fd3..0d7b1c3 100644 --- a/python_client/README.md +++ b/python_client/README.md @@ -5,7 +5,7 @@ Locatr package helps you to find HTML locators on a webpage using prompts and llms. ## Overview -- LLM based HTML locator finder. +- HTML LLM based HTML element path finder. - Re-rank support for improved accuracy. - Supports playwright, selenium, cdp. - Uses cache to reduce calls to llm apis. @@ -15,6 +15,7 @@ Example: ```python print(locatr.get_locatr("Search input bar in the page")) +# output: 'html > div > input' ``` For more examples check the `examples/python` folder. @@ -155,4 +156,4 @@ You can also get locatrs asynchronously. Just call `get_locatr_async`. ``` await l.get_locatr_async("red 'yes button' in the form") -``` \ No newline at end of file +```