# Content
- About
- How to use
# About
The OpenRPA support web app manipulation (by the Selenium lib).
More docs about selenium you can find [here](https://selenium-python.readthedocs.io/)
# How to use
To start use selenium just import selenium modules in [the robot tool](https://gitlab.com/UnicodeLabs/OpenRPA/wikis/04.2.-Tool-Robot:-How-to-use). Here is the example of the usage.
> from selenium import webdriver
> from selenium.webdriver.common.keys import Keys
>
> driver = webdriver.Chrome()
> driver.get("http://www.python.org")
> assert "Python" in driver.title
> elem = driver.find_element_by_name("q")
> elem.clear()
> elem.send_keys("pycon")
> elem.send_keys(Keys.RETURN)
> assert "No results found." not in driver.page_source
> driver.close()