diff --git a/.doctrees/environment.pickle b/.doctrees/environment.pickle index 52c9a29d59..0548607199 100644 Binary files a/.doctrees/environment.pickle and b/.doctrees/environment.pickle differ diff --git a/.doctrees/index.doctree b/.doctrees/index.doctree index 3405ba033d..9f745f592b 100644 Binary files a/.doctrees/index.doctree and b/.doctrees/index.doctree differ diff --git a/.doctrees/libraries/http/python.doctree b/.doctrees/libraries/http/python.doctree index cc800140cf..53819aa76c 100644 Binary files a/.doctrees/libraries/http/python.doctree and b/.doctrees/libraries/http/python.doctree differ diff --git a/.doctrees/libraries/outlook_application/python.doctree b/.doctrees/libraries/outlook_application/python.doctree index 510d22bb76..ccd2d38f0f 100644 Binary files a/.doctrees/libraries/outlook_application/python.doctree and b/.doctrees/libraries/outlook_application/python.doctree differ diff --git a/index.html b/index.html index 62e59dc922..1f8f80f11b 100644 --- a/index.html +++ b/index.html @@ -172,7 +172,7 @@
Learn more about RPA at Robocorp Documentation.
+Learn more about RPA at Robocorp Documentation.
The project is:
100% Open Source
channels:
- conda-forge
dependencies:
- - python=3.9.16
- - nodejs=16.14.2
- - pip=22.1.2
+ - python=3.10.14
+ - nodejs=22.9.0
+ - pip=24.0
- pip:
- - robotframework-browser==17.2.0
- - rpaframework==24.1.2
+ - robotframework-browser==18.8.1
+ - rpaframework==28.6.3
rccPostInstall:
- rfbrowser init
channels:
- conda-forge
dependencies:
- - python=3.9.16
- - pip=22.1.2
+ - python=3.10.14
+ - pip=24.0
- pip:
- - rpaframework==24.1.2
+ - rpaframework==28.6.3
To install all extra packages (including Playwright dependencies), you can use:
channels:
- conda-forge
dependencies:
- - python=3.9.16
- - tesseract=4.1.1
- - nodejs=16.14.2
- - pip=22.1.2
+ - python=3.10.14
+ - tesseract=5.4.1
+ - nodejs=22.9.0
+ - pip=24.0
- pip:
- - robotframework-browser==17.2.0
- - rpaframework==24.1.2
- - rpaframework-aws==5.2.8
- - rpaframework-google==7.0.3
- - rpaframework-recognition==5.1.2
+ - robotframework-browser==18.8.1
+ - rpaframework==28.6.3
+ - rpaframework-aws==5.3.3
+ - rpaframework-google==9.0.2
+ - rpaframework-recognition==5.2.5
rccPostInstall:
- rfbrowser init
channels:
- conda-forge
dependencies:
- - python=3.9.16
- - pip=22.1.2
+ - python=3.10.14
+ - pip=24.0
- pip:
- - rpaframework-aws==5.2.8 # included in the rpaframework as an extra
- - rpaframework-pdf==7.1.5 # included in the rpaframework by default
- - rpaframework-windows==7.3.2 # included in the rpaframework by default
+ - rpaframework-aws==5.3.3 # included in the rpaframework as an extra
+ - rpaframework-pdf==7.3.3 # included in the rpaframework by default
+ - rpaframework-windows==7.5.2 # included in the rpaframework by default
Installation method with pip using Python venv:
@@ -509,10 +509,9 @@rpaframework.org for library documentation
Robocorp Documentation for guides and tutorials
Robocorp Documentation for guides and tutorials
#rpaframework channel in Robot Framework Slack if you have open questions or want to contribute
Robocorp Forum for discussions about RPA
Communicate with your fellow Software Robot Developers and Robocorp experts at Robocorp Developers Slack
Repository development is Python based and requires at minimum
Python version 3.8+ installed on the development machine. The default Python version used in the
-Robocorp Robot template is 3.9.16 so it is a good choice for the version to install. Not recommended
+Robocorp Robot template is 3.10.14 so it is a good choice for the version to install. Not recommended
versions are 3.7.6 and 3.8.1, because they have issues with some of the dependencies related to rpaframework
.
-At the time the newer Python versions starting from 3.11 are also not recommended, because some of
+At the time the newer Python versions starting from 3.12 are also not recommended, because some of
the dependencies might cause issues.
Repository development tooling is based on poetry and invoke. Poetry is the underlying tool used for compiling, building and running the package. Invoke is used @@ -629,7 +628,7 @@
Visual Studio Code as a code editor with following extensions:
-
- +
- diff --git a/latest.json b/latest.json index c127770119..7d30e30e0d 100644 --- a/latest.json +++ b/latest.json @@ -4,7 +4,7 @@ "name": "RPA.Archive", "doc": "
\n\n", "version": "", - "generated": "2024-12-06 10:56:39", + "generated": "2024-12-06 10:58:11", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -462,7 +462,7 @@ "name": "RPA.Assistant", "doc": "Archive is a library for operating with ZIP and TAR packages.
\nExamples
\n\n*** Settings ***\nLibrary RPA.Archive\n\n*** Tasks ***\nCreating a ZIP archive\n Archive Folder With ZIP ${CURDIR}${/}tasks tasks.zip recursive=True include=*.robot exclude=/.*\n @{files} List Archive tasks.zip\n FOR ${file} IN ${files}\n Log ${file}\n END\n Add To Archive .${/}..${/}missing.robot tasks.zip\n &{info} Get Archive Info\n\n\nfrom RPA.Archive import Archive\n\nlib = Archive()\nlib.archive_folder_with_tar('./tasks', 'tasks.tar', recursive=True)\nfiles = lib.list_archive('tasks.tar')\nfor file in files:\n print(file)\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:40", + "generated": "2024-12-06 10:58:12", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -2671,7 +2671,7 @@ "name": "RPA.Browser", "doc": "The Assistant library provides a way to display information to a user\nand request input while a robot is running. It allows building processes\nthat require human interaction. Also it offers capabilities of running\nother robots inside the current one and determine what to display to the\nuser based on his previous responses.
\nIt is not included in the rpaframework package, so in order to use it\nyou have to add rpaframework-assistant with the desired version in your\nconda.yaml file
\nSome examples of use-cases could be the following:
\n\n
\n- Displaying generated files after an execution is finished
\n- Displaying dynamic and user-friendly error messages
\n- Requesting passwords or other personal information
\n- Running Keywords based on user's actions
\n- Displaying dynamic content based on user's actions
\n- Automating based on files created by the user
\nWorkflow
\nThe library is used to create dialogs, i.e. windows, that can be composed\non-the-fly based on the current state of the execution.
\nThe content of the dialog is defined by calling relevant keywords\nsuch as Add text or Add file input. When the dialog is opened\nthe content is generated based on the previous keywords.
\nDepending on the way the dialog is started, the execution will either\nblock or continue while the dialog is open. During this time the user\ncan freely edit any possible input fields or handle other tasks.
\nAfter the user has successfully submitted the dialog, any possible\nentered input will be returned as a result. The user also has the option\nto abort by closing the dialog window forcefully.
\nResults
\nEach input field has a required name argument that controls what\nthe value will be called in the result object. Each input name should be\nunique, and must not be called submit as that is reserved for the submit\nbutton value.
\nA result object is a Robot Framework DotDict, where each key\nis the name of the input field and the value is what the user entered.\nThe data type of each field depends on the input. For instance,\na text input will have a string, a checkbox will have a boolean, and\na file input will have a list of paths.
\nIf the user closed the window before submitting or there was an internal\nerror, the results object returned by Run Dialog or Ask User won't have a "submit"\nkey.
\nLayouting
\nBy default elements are added to the assistant dialog from top to bottom, with a bit\nof margin around each element to add spaciousness. This margin is added as a\nContainer you can manually use Open Container to override the default\ncontainer. You can use it to set smaller margins.
\nYou can combine layouting elements with each other. Layouting elements need to be\nclosed with the corresponding Close keyword. (So Open Row and then\nClose Row.)
\nOpen Row can be used to layout elements in the same row.
\nOpen Column can be used to layout elements in columns.
\nOpen Stack and multiple Open Container's inside it can be used to set\npositions like Center, Topleft, BottomRight, or coordinate tuples likes (0, 0),\n(100, 100) and such.
\nOpen Container can bse used for absolute positioning inside a Stack, or anywhere\nfor setting background color or margins and paddings.
\nOpen Navbar can be used to make a navigation bar that will stay at the top of\nthe dialog. Its contents won't be cleared when.
\nExamples
\n\n*** Keywords ***\nSuccess dialog\n Add icon Success\n Add heading Your orders have been processed\n Add files *.txt\n Run dialog title=Success\n\nFailure dialog\n Add icon Failure\n Add heading There was an error\n Add text The assistant failed to login to the Enterprise portal\n Add link https://robocorp.com/docs label=Troubleshooting guide\n Run dialog title=Failure\n\nLarge dialog\n Add heading A real chonker size=large\n Add image fat-cat.jpeg\n Run dialog title=Large height=1024 width=1024\n\nConfirmation dialog\n Add icon Warning\n Add heading Delete user ${username}?\n Add submit buttons buttons=No,Yes default=Yes\n ${result}= Run dialog\n IF $result.submit == "Yes"\n Delete user ${username}\n END\n\nInput form dialog\n Add heading Send feedback\n Add text input email label=E-mail address\n Add text input message\n ... label=Feedback\n ... placeholder=Enter feedback here\n ... maximum_rows=5\n ${result}= Run dialog\n Send feedback message ${result.email} ${result.message}\n\n\ndef success_dialog():\n assistant = Assistant()\n assistant.add_icon("success")\n assistant.add_heading("Your orders have been processed")\n assistant.add_files("*.txt")\n assistant.run_dialog(title="Success")\n\ndef failure_dialog():\n assistant = Assistant()\n assistant.add_icon("failure")\n assistant.add_heading("There was an error")\n assistant.add_text("The assistant failed to login to the Enterprise portal")\n assistant.add_link("https://robocorp.com/docs", label="Troubleshooting guide")\n assistant.add_files("*.txt")\n assistant.run_dialog(title="Failure")\n\ndef large_dialog():\n assistant = Assistant()\n assistant.add_heading("A real chonker", size="large")\n assistant.add_image("fat-cat.jpeg")\n assistant.run_dialog(title="Large", height=1024, width=1024)\n\ndef confirmation_dialog():\n assistant = Assistant()\n assistant.add_icon("warning")\n assistant.add_heading("Delete user ${username}?")\n assistant.add_submit_buttons(buttons="No, Yes", default="Yes")\n result = assistant.run_dialog()\n if result.submit == "Yes":\n delete_user(username)\n\ndef input_from_dialog():\n assistant = Assistant()\n assistant.add_heading("Send feedback")\n assistant.add_text_input("email", label="E-mail address")\n assistant.add_text_input("message", label="Feedback", placeholder="Enter feedback here", maximum_rows=5)\n assistant.add_submit_buttons("Submit", default="Submit")\n result = assistant.run_dialog()\n send_feedback_message(result.email, result.message)\n\nSeleniumLibrary is a web testing library for Robot Framework.
\nThis document explains how to use keywords provided by SeleniumLibrary. For information about installation, support, and more, please visit the project pages. For more information about Robot Framework, see http://robotframework.org.
\nSeleniumLibrary uses the Selenium WebDriver modules internally to control a web browser. See http://seleniumhq.org for more information about Selenium in general and SeleniumLibrary README.rst Browser drivers chapter for more details about WebDriver binary installation.
\n\n
\n- Locating elements
\n- Browser and Window
\n- Timeouts, waits, and delays
\n- Run-on-failure functionality
\n- Boolean arguments
\n- EventFiringWebDriver
\n- Thread support
\n- Plugins
\n- Auto closing browser
\n- Importing
\n- Keywords
\nLocating elements
\nAll keywords in SeleniumLibrary that need to interact with an element on a web page take an argument typically named
\nlocator
that specifies how to find the element. Most often the locator is given as a string using the locator syntax described below, but using WebElements is possible too.Locator syntax
\nSeleniumLibrary supports finding elements based on different strategies such as the element id, XPath expressions, or CSS selectors. The strategy can either be explicitly specified with a prefix or the strategy can be implicit.
\nDefault locator strategy
\nBy default, locators are considered to use the keyword specific default locator strategy. All keywords support finding elements based on
\nid
andname
attributes, but some keywords support additional attributes or other values that make sense in their context. For example, Click Link supports thehref
attribute and the link text and addition to the normalid
andname
.Examples:
\n\n
\n\n \nClick Element \nexample \n# Match based on \nid
orname
.\n \nClick Link \nexample \n# Match also based on link text and \nhref
.\n \nClick Button \nexample \n# Match based on \nid
,name
orvalue
.If a locator accidentally starts with a prefix recognized as explicit locator strategy or implicit XPath strategy, it is possible to use the explicit
\ndefault
prefix to enable the default strategy.Examples:
\n\n
\n\n \nClick Element \nname:foo \n# Find element with name \nfoo
.\n \nClick Element \ndefault:name:foo \n# Use default strategy with value \nname:foo
.\n \nClick Element \n//foo \n# Find element using XPath \n//foo
.\n \nClick Element \ndefault: //foo \n# Use default strategy with value \n//foo
.Explicit locator strategy
\nThe explicit locator strategy is specified with a prefix using either syntax
\nstrategy:value
orstrategy=value
. The former syntax is preferred because the latter is identical to Robot Framework's named argument syntax and that can cause problems. Spaces around the separator are ignored, soid:foo
,id: foo
andid : foo
are all equivalent.Locator strategies that are supported by default are listed in the table below. In addition to them, it is possible to register custom locators.
\n\n
\n\n \nStrategy \nMatch based on \nExample \n\n \nid \nElement \nid
.\n id:example
\n \nname \n\n name
attribute.\n name:example
\n \nidentifier \nEither \nid
orname
.\n identifier:example
\n \nclass \nElement \nclass
.\n class:example
\n \ntag \nTag name. \n\n tag:div
\n \nxpath \nXPath expression. \n\n xpath://div[@id=\"example\"]
\n \ncss \nCSS selector. \n\n css:div#example
\n \ndom \nDOM expression. \n\n dom:document.images[5]
\n \nlink \nExact text a link has. \n\n link:The example
\n \npartial link \nPartial link text. \n\n partial link:he ex
\n \nsizzle \nSizzle selector deprecated. \n\n sizzle:div.example
\n \ndata \nElement \ndata-*
attribute\n data:id:my_id
\n \njquery \njQuery expression. \n\n jquery:div.example
\n \ndefault \nKeyword specific default behavior. \n\n default:example
See the Default locator strategy section below for more information about how the default strategy works. Using the explicit
\ndefault
prefix is only necessary if the locator value itself accidentally matches some of the explicit strategies.Different locator strategies have different pros and cons. Using ids, either explicitly like
\nid:foo
or by using the default locator strategy simply likefoo
, is recommended when possible, because the syntax is simple and locating elements by id is fast for browsers. If an element does not have an id or the id is not stable, other solutions need to be used. If an element has a unique tag name or class, usingtag
,class
orcss
strategy liketag:h1
,class:example
orcss:h1.example
is often an easy solution. In more complex cases using XPath expressions is typically the best approach. They are very powerful but a downside is that they can also get complex.Examples:
\n\n
\n\n \nClick Element \nid:foo \n# Element with id 'foo'. \n\n \nClick Element \ncss:div#foo h1 \n# h1 element under div with id 'foo'. \n\n \nClick Element \nxpath: //div[@id=\"foo\"]//h1 \n# Same as the above using XPath, not CSS. \n\n \nClick Element \nxpath: //*[contains(text(), \"example\")] \n# Element containing text 'example'. \nNOTE:
\n\n
\n- The
\nstrategy:value
syntax is only supported by SeleniumLibrary 3.0 and newer.- Using the
\nsizzle
strategy or its aliasjquery
requires that the system under test contains the jQuery library.- Prior to SeleniumLibrary 3.0, table related keywords only supported
\nxpath
,css
andsizzle/jquery
strategies.- \n
data
strategy is conveniance locator that will construct xpath from the parameters. If you have element like <div data-automation=\"automation-id-2\">, you locate the element viadata:automation:automation-id-2
. This feature was added in SeleniumLibrary 5.2.0Implicit XPath strategy
\nIf the locator starts with
\n//
or multiple opening parenthesis in front of the//
, the locator is considered to be an XPath expression. In other words, using//div
is equivalent to using explicitxpath://div
and((//div))
is equivalent to using explicitxpath:((//div))
Examples:
\n\n
\n\n \nClick Element \n//div[@id=\"foo\"]//h1 \n\n \nClick Element \n(//div)[2] \nThe support for the
\n(//
prefix is new in SeleniumLibrary 3.0. Supporting multiple opening parenthesis is new in SeleniumLibrary 5.0.Chaining locators
\nIt is possible chain multiple locators together as single locator. Each chained locator must start with locator strategy. Chained locators must be separated with single space, two greater than characters and followed with space. It is also possible mix different locator strategies, example css or xpath. Also a list can also be used to specify multiple locators. This is useful, is some part of locator would match as the locator separator but it should not. Or if there is need to existing WebElement as locator.
\nAlthough all locators support chaining, some locator strategies do not abey the chaining. This is because some locator strategies use JavaScript to find elements and JavaScript is executed for the whole browser context and not for the element found be the previous locator. Chaining is supported by locator strategies which are based on Selenium API, like xpath or css, but example chaining is not supported by sizzle or `jquery
\nExamples:
\n\n
\n\n \nClick Element \ncss:.bar >> xpath://a \n# To find a link which is present after an element with class \"bar\" \nList examples:
\n\n
\n\n \n${locator_list} = \nCreate List \ncss:div#div_id \nxpath://*[text(), \" >> \"] \n\n \nPage Should Contain Element \n${locator_list} \n\n \n \n \n${element} = \nGet WebElement \nxpath://*[text(), \" >> \"] \n\n \n \n${locator_list} = \nCreate List \ncss:div#div_id \n${element} \n\n \nPage Should Contain Element \n${locator_list} \n\n \n Chaining locators in new in SeleniumLibrary 5.0
\nUsing WebElements
\nIn addition to specifying a locator as a string, it is possible to use Selenium's WebElement objects. This requires first getting a WebElement, for example, by using the Get WebElement keyword.
\n\n
\n\n \n${elem} = \nGet WebElement \nid:example \n\n \nClick Element \n${elem} \n\n Custom locators
\nIf more complex lookups are required than what is provided through the default locators, custom lookup strategies can be created. Using custom locators is a two part process. First, create a keyword that returns a WebElement that should be acted on:
\n\n
\n\n \nCustom Locator Strategy \n[Arguments] \n${browser} \n${locator} \n${tag} \n${constraints} \n\n \n\n ${element}= \nExecute Javascript \nreturn window.document.getElementById('${locator}'); \n\n \n \n \n\n [Return] \n${element} \n\n \n \n This keyword is a reimplementation of the basic functionality of the
\nid
locator where${browser}
is a reference to a WebDriver instance and${locator}
is the name of the locator strategy. To use this locator, it must first be registered by using the Add Location Strategy keyword:\n
\n\n \nAdd Location Strategy \ncustom \nCustom Locator Strategy \nThe first argument of Add Location Strategy specifies the name of the strategy and it must be unique. After registering the strategy, the usage is the same as with other locators:
\n\n
\n\n \nClick Element \ncustom:example \nSee the Add Location Strategy keyword for more details.
\nBrowser and Window
\nThere is different conceptual meaning when SeleniumLibrary talks about windows or browsers. This chapter explains those differences.
\nBrowser
\nWhen Open Browser or Create WebDriver keyword is called, it will create a new Selenium WebDriver instance by using the Selenium WebDriver API. In SeleniumLibrary terms, a new browser is created. It is possible to start multiple independent browsers (Selenium Webdriver instances) at the same time, by calling Open Browser or Create WebDriver multiple times. These browsers are usually independent of each other and do not share data like cookies, sessions or profiles. Typically when the browser starts, it creates a single window which is shown to the user.
\nWindow
\nWindows are the part of a browser that loads the web site and presents it to the user. All content of the site is the content of the window. Windows are children of a browser. In SeleniumLibrary browser is a synonym for WebDriver instance. One browser may have multiple windows. Windows can appear as tabs, as separate windows or pop-ups with different position and size. Windows belonging to the same browser typically share the sessions detail, like cookies. If there is a need to separate sessions detail, example login with two different users, two browsers (Selenium WebDriver instances) must be created. New windows can be opened example by the application under test or by example Execute Javascript keyword:
\n\nExecute Javascript window.open() # Opens a new window with location about:blank\n\nThe example below opens multiple browsers and windows, to demonstrate how the different keywords can be used to interact with browsers, and windows attached to these browsers.
\nStructure:
\n\nBrowserA\n Window 1 (location=https://robotframework.org/)\n Window 2 (location=https://robocon.io/)\n Window 3 (location=https://github.com/robotframework/)\n\nBrowserB\n Window 1 (location=https://github.com/)\n\nExample:
\n\n
\n\n \nOpen Browser \nhttps://robotframework.org \n${BROWSER} \nalias=BrowserA \n# BrowserA with first window is opened. \n\n \nExecute Javascript \nwindow.open() \n\n \n # In BrowserA second window is opened. \n\n \nSwitch Window \nlocator=NEW \n\n \n # Switched to second window in BrowserA \n\n \nGo To \nhttps://robocon.io \n\n \n # Second window navigates to robocon site. \n\n \nExecute Javascript \nwindow.open() \n\n \n # In BrowserA third window is opened. \n\n \n${handle} \nSwitch Window \nlocator=NEW \n\n # Switched to third window in BrowserA \n\n \nGo To \nhttps://github.com/robotframework/ \n\n \n # Third windows goes to robot framework github site. \n\n \nOpen Browser \nhttps://github.com \n${BROWSER} \nalias=BrowserB \n# BrowserB with first windows is opened. \n\n \n${location} \nGet Location \n\n \n # ${location} is: https://www.github.com \n\n \nSwitch Window \n${handle} \nbrowser=BrowserA \n\n # BrowserA second windows is selected. \n\n \n${location} \nGet Location \n\n \n # ${location} = https://robocon.io/ \n\n \n@{locations 1} \nGet Locations \n\n \n # By default, lists locations under the currectly active browser (BrowserA). \n\n \n@{locations 2} \nGet Locations \nbrowser=ALL \n\n # By using browser=ALL argument keyword list all locations from all browsers. \nThe above example, @{locations 1} contains the following items: https://robotframework.org/, https://robocon.io/ and https://github.com/robotframework/'. The @{locations 2} contains the following items: https://robotframework.org/, https://robocon.io/, https://github.com/robotframework/' and 'https://github.com/.
\nTimeouts, waits, and delays
\nThis section discusses different ways how to wait for elements to appear on web pages and to slow down execution speed otherwise. It also explains the time format that can be used when setting various timeouts, waits, and delays.
\nTimeout
\nSeleniumLibrary contains various keywords that have an optional
\ntimeout
argument that specifies how long these keywords should wait for certain events or actions. These keywords include, for example,Wait ...
keywords and keywords related to alerts. Additionally Execute Async Javascript. Although it does not havetimeout
, argument, uses a timeout to define how long asynchronous JavaScript can run.The default timeout these keywords use can be set globally either by using the Set Selenium Timeout keyword or with the
\ntimeout
argument when importing the library. If no default timeout is set globally, the default is 5 seconds. If None is specified for the timeout argument in the keywords, the default is used. See time format below for supported timeout syntax.Implicit wait
\nImplicit wait specifies the maximum time how long Selenium waits when searching for elements. It can be set by using the Set Selenium Implicit Wait keyword or with the
\nimplicit_wait
argument when importing the library. See Selenium documentation for more information about this functionality.See time format below for supported syntax.
\nPage load
\nPage load timeout is the amount of time to wait for page load to complete until a timeout exception is raised.
\nThe default page load timeout can be set globally when importing the library with the
\npage_load_timeout
argument or by using the Set Selenium Page Load Timeout keyword.See time format below for supported timeout syntax.
\nSupport for page load is new in SeleniumLibrary 6.1
\nSelenium speed
\nSelenium execution speed can be slowed down globally by using Set Selenium speed keyword. This functionality is designed to be used for demonstrating or debugging purposes. Using it to make sure that elements appear on a page is not a good idea. The above-explained timeouts and waits should be used instead.
\nSee time format below for supported syntax.
\nTime format
\nAll timeouts and waits can be given as numbers considered seconds (e.g.
\n0.5
or42
) or in Robot Framework's time syntax (e.g.1.5 seconds
or1 min 30 s
). For more information about the time syntax see the Robot Framework User Guide.Run-on-failure functionality
\nSeleniumLibrary has a handy feature that it can automatically execute a keyword if any of its own keywords fails. By default, it uses the Capture Page Screenshot keyword, but this can be changed either by using the Register Keyword To Run On Failure keyword or with the
\nrun_on_failure
argument when importing the library. It is possible to use any keyword from any imported library or resource file.The run-on-failure functionality can be disabled by using a special value
\nNOTHING
or anything considered false (see Boolean arguments) such asNONE
.Boolean arguments
\nStarting from 5.0 SeleniumLibrary relies on Robot Framework to perform the boolean conversion based on keyword arguments type hint. More details in Robot Framework user guide
\nPlease note SeleniumLibrary 3 and 4 did have own custom methods to covert arguments to boolean values.
\nEventFiringWebDriver
\nThe SeleniumLibrary offers support for EventFiringWebDriver. See the Selenium and SeleniumLibrary EventFiringWebDriver support documentation for further details.
\nEventFiringWebDriver is new in SeleniumLibrary 4.0
\nThread support
\nSeleniumLibrary is not thread-safe. This is mainly due because the underlying Selenium tool is not thread-safe within one browser/driver instance. Because of the limitation in the Selenium side, the keywords or the API provided by the SeleniumLibrary is not thread-safe.
\nPlugins
\nSeleniumLibrary offers plugins as a way to modify and add library keywords and modify some of the internal functionality without creating a new library or hacking the source code. See plugin API documentation for further details.
\nPlugin API is new SeleniumLibrary 4.0
\nAuto closing browser
\nBy default, the browser instances created during a task execution are closed at the end of the task. This can be prevented with the
\nauto_close
parameter when importing the library.The value of the parameter needs to be set to
", "version": "6.3.0", - "generated": "2024-12-06 10:56:40", + "generated": "2024-12-06 10:58:12", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -12160,7 +12160,7 @@ "name": "RPA.Browser.Playwright", "doc": "False
or any object evaluated as false (see Boolean arguments).Browser library is a browser automation library for Robot Framework.
\nThis is the keyword documentation for Browser library. For information about installation, support, and more please visit the project pages. For more information about Robot Framework itself, see robotframework.org.
\nBrowser library uses Playwright Node module to automate Chromium, Firefox and WebKit with a single library.
\nTable of contents
\n\n
\n- Browser, Context and Page
\n- Automatic page and context closing
\n- Finding elements
\n- Assertions
\n- Implicit waiting
\n- Experimental: Re-using same node process
\n- Experimental: Provide parameters to node process
\n- Scope Setting
\n- Extending Browser library with a JavaScript module
\n- Plugins
\n- Importing
\n- Keywords
\nBrowser, Context and Page
\nBrowser library works with three different layers that build on each other: Browser, Context and Page.
\nBrowsers
\nA browser can be started with one of the three different engines Chromium, Firefox or Webkit.
\nSupported Browsers
\n\n
\n\n \nBrowser \nBrowser with this engine \n\n \n\n chromium
Google Chrome, Microsoft Edge (since 2020), Opera \n\n \n\n firefox
Mozilla Firefox \n\n \n\n webkit
Apple Safari, Mail, AppStore on MacOS and iOS \nSince Playwright comes with a pack of builtin binaries for all browsers, no additional drivers e.g. geckodriver are needed.
\nAll these browsers that cover more than 85% of the world wide used browsers, can be tested on Windows, Linux and MacOS. There is no need for dedicated machines anymore.
\nA browser process is started
\nheadless
(without a GUI) by default. Run New Browser with specified arguments if a browser with a GUI is requested or if a proxy has to be configured. A browser process can contain several contexts.Contexts
\nA context corresponds to a set of independent incognito pages in a browser that share cookies, sessions or profile settings. Pages in two separate contexts do not share cookies, sessions or profile settings. Compared to Selenium, these do not require their own browser process. To get a clean environment a test can just open a new context. Due to this new independent browser sessions can be opened with Robot Framework Browser about 10 times faster than with Selenium by just opening a New Context within the opened browser.
\nTo make pages in the same suite share state, use the same context by opening the context with New Context on suite setup.
\nThe context layer is useful e.g. for testing different user sessions on the same webpage without opening a whole new browser context. Contexts can also have detailed configurations, such as geo-location, language settings, the viewport size or color scheme. Contexts do also support http credentials to be set, so that basic authentication can also be tested. To be able to download files within the test, the
\nacceptDownloads
argument must be set toTrue
in New Context keyword. A context can contain different pages.Pages
\nA page does contain the content of the loaded web site and has a browsing history. Pages and browser tabs are the same.
\nTypical usage could be:
\n\n* Test Cases *\nStarting a browser with a page\n New Browser chromium headless=false\n New Context viewport={'width': 1920, 'height': 1080}\n New Page https://marketsquare.github.io/robotframework-browser/Browser.html\n Get Title == Browser\n\nThe Open Browser keyword opens a new browser, a new context and a new page. This keyword is useful for quick experiments or debugging sessions.
\nWhen a New Page is called without an open browser, New Browser and New Context are executed with default values first.
\nEach Browser, Context and Page has a unique ID with which they can be addressed. A full catalog of what is open can be received by Get Browser Catalog as a dictionary.
\nAutomatic page and context closing
\nControls when contexts and pages are closed during the test execution.
\nIf automatic closing level is TEST, contexts and pages that are created during a single test are automatically closed when the test ends. Contexts and pages that are created during suite setup are closed when the suite teardown ends.
\nIf automatic closing level is SUITE, all contexts and pages that are created during the test suite are closed when the suite teardown ends.
\nIf automatic closing level is MANUAL, nothing is closed automatically while the test execution is ongoing.
\nAll browsers are automatically closed, always and regardless of the automatic closing level at the end of the test execution. This will also close all remaining pages and contexts.
\nAutomatic closing can be configured or switched off with the auto_closing_level library import parameter.
\nSee: Importing
\nFinding elements
\nAll keywords in the library that need to interact with an element on a web page take an argument typically named
\nselector
that specifies how to find the element. Keywords can find elements with strict mode. If strict mode is true and locator finds multiple elements from the page, keyword will fail. If keyword finds one element, keyword does not fail because of strict mode. If strict mode is false, keyword does not fail if selector points many elements. Strict mode is enabled by default, but can be changed in library importing or Set Strict Mode keyword. Keyword documentation states if keyword uses strict mode. If keyword does not state that strict mode is used, then strict mode is not applied for the keyword. For more details, see Playwright strict documentation.Selector strategies that are supported by default are listed in the table below.
\n\n
\n\n \nStrategy \nMatch based on \nExample \n\n \n\n css
CSS selector. \n\n css=.class > \\#login_btn
\n \n\n xpath
XPath expression. \n\n xpath=//input[@id=\"login_btn\"]
\n \n\n text
Browser text engine. \n\n text=Login
\n \n\n id
Element ID Attribute. \n\n id=login_btn
CSS Selectors can also be recorded with Record selector keyword.
\nExplicit Selector Strategy
\nThe explicit selector strategy is specified with a prefix using syntax
\nstrategy=value
. Spaces around the separator are ignored, socss=foo
,css= foo
andcss = foo
are all equivalent.Implicit Selector Strategy
\nThe default selector strategy is css.
\nIf selector does not contain one of the know explicit selector strategies, it is assumed to contain css selector.
\nSelectors that are starting with
\n//
or..
are considered as xpath selectors.Selectors that are in quotes are considered as text selectors.
\nExamples:
\n\n# CSS selectors are default.\nClick span > button.some_class # This is equivalent\nClick css=span > button.some_class # to this.\n\n# // or .. leads to xpath selector strategy\nClick //span/button[@class=\"some_class\"]\nClick xpath=//span/button[@class=\"some_class\"]\n\n# \"text\" in quotes leads to exact text selector strategy\nClick \"Login\"\nClick text=\"Login\"\n\nCSS
\nAs written before, the default selector strategy is css. See css selector for more information.
\nAny malformed selector not starting with
\n//
or..
nor starting and ending with a quote is assumed to be a css selector.Note that
\n#
is a comment character in Robot Framework syntax and needs to be escaped like\\#
to work as a css ID selector.Examples:
\n\nClick span > button.some_class\nGet Text \\#username_field == George\n\nXPath
\nXPath engine is equivalent to Document.evaluate. Example:
\nxpath=//html/body//span[text()=\"Hello World\"]
.Malformed selector starting with
\n//
or..
is assumed to be an xpath selector. For example,//html/body
is converted toxpath=//html/body
. More examples are displayed in Examples.Note that xpath does not pierce shadow_roots.
\nText
\nText engine finds an element that contains a text node with the passed text. For example,
\nClick text=Login
clicks on a login button, andWait For Elements State text=\"lazy loaded text\"
waits for the \"lazy loaded text\" to appear in the page.Text engine finds fields based on their labels in text inserting keywords.
\nMalformed selector starting and ending with a quote (either
\n\"
or'
) is assumed to be a text selector. For example,Click \"Login\"
is converted toClick text=\"Login\"
. Be aware that these leads to exact matches only! More examples are displayed in Examples.Insensitive match
\nBy default, the match is case-insensitive, ignores leading/trailing whitespace and searches for a substring. This means
\ntext= Login
matches<button>Button loGIN (click me)</button>
.Exact match
\nText body can be escaped with single or double quotes for precise matching, insisting on exact match, including specified whitespace and case. This means
\ntext=\"Login \"
will only match<button>Login </button>
with exactly one space after \"Login\". Quoted text follows the usual escaping rules, e.g. use\\\"
to escape double quote in a double-quoted string:text=\"foo\\\"bar\"
.RegEx
\nText body can also be a JavaScript-like regex wrapped in / symbols. This means
\ntext=/^hello .*!$/i
ortext=/^Hello .*!$/
will match<span>Hello Peter Parker!</span>
with any name afterHello
, ending with!
. The first one flagged withi
for case-insensitive. See https://regex101.com for more information about RegEx.Button and Submit Values
\nInput elements of the type button and submit are rendered with their value as text, and text engine finds them. For example,
\ntext=Login
matches<input type=button value=\"Login\">
.Cascaded selector syntax
\nBrowser library supports the same selector strategies as the underlying Playwright node module: xpath, css, id and text. The strategy can either be explicitly specified with a prefix or the strategy can be implicit.
\nA major advantage of Browser is that multiple selector engines can be used within one selector. It is possible to mix XPath, CSS and Text selectors while selecting a single element.
\nSelectors are strings that consists of one or more clauses separated by
\n>>
token, e.g.clause1 >> clause2 >> clause3
. When multiple clauses are present, next one is queried relative to the previous one's result. Browser library supports concatenation of different selectors separated by>>
.For example:
\n\nHighlight Elements \"Hello\" >> ../.. >> .select_button\nHighlight Elements text=Hello >> xpath=../.. >> css=.select_button\n\nEach clause contains a selector engine name and selector body, e.g.
\nengine=body
. Hereengine
is one of the supported engines (e.g. css or a custom one). Selectorbody
follows the format of the particular engine, e.g. for css engine it should be a css selector. Body format is assumed to ignore leading and trailing white spaces, so that extra whitespace can be added for readability. If the selector engine needs to include>>
in the body, it should be escaped inside a string to not be confused with clause separator, e.g.text=\"some >> text\"
.Selector engine name can be prefixed with
\n*
to capture an element that matches the particular clause instead of the last one. For example,css=article >> text=Hello
captures the element with the textHello
, and*css=article >> text=Hello
(note the *) captures the article element that contains some element with the text Hello.For convenience, selectors in the wrong format are heuristically converted to the right format. See Implicit Selector Strategy
\nExamples
\n\n# queries 'div' css selector\nGet Element css=div\n\n# queries '//html/body/div' xpath selector\nGet Element //html/body/div\n\n# queries '\"foo\"' text selector\nGet Element text=foo\n\n# queries 'span' css selector inside the result of '//html/body/div' xpath selector\nGet Element xpath=//html/body/div >> css=span\n\n# converted to 'css=div'\nGet Element div\n\n# converted to 'xpath=//html/body/div'\nGet Element //html/body/div\n\n# converted to 'text=\"foo\"'\nGet Element \"foo\"\n\n# queries the div element of every 2nd span element inside an element with the id foo\nGet Element \\#foo >> css=span:nth-child(2n+1) >> div\nGet Element id=foo >> css=span:nth-child(2n+1) >> div\n\nBe aware that using
\n#
as a starting character in Robot Framework would be interpreted as comment. Due to that fact a#id
must be escaped as\\#id
.Frames
\nBy default, selector chains do not cross frame boundaries. It means that a simple CSS selector is not able to select an element located inside an iframe or a frameset. For this use case, there is a special selector
\n>>>
which can be used to combine a selector for the frame and a selector for an element inside a frame.Given this simple pseudo html snippet:
\n\n<iframe id=\"iframe\" src=\"src.html\">\n #document\n <!DOCTYPE html>\n <html>\n <head></head>\n <body>\n <button id=\"btn\">Click Me</button>\n </body>\n </html>\n</iframe>\n\nHere's a keyword call that clicks the button inside the frame.
\n\nClick id=iframe >>> id=btn\n\nThe selectors on the left and right side of
\n>>>
can be any valid selectors. The selector clause directly before the frame opener>>>
must select the frame element. Frame selection is the only place where Browser Library modifies the selector, as explained in above. In all cases, the library does not alter the selector in any way, instead it is passed as is to the Playwright side.WebComponents and Shadow DOM
\nPlaywright and so also Browser are able to do automatic piercing of Shadow DOMs and therefore are the best automation technology when working with WebComponents.
\nAlso other technologies claim that they can handle Shadow DOM and Web Components. However, none of them do pierce shadow roots automatically, which may be inconvenient when working with Shadow DOM and Web Components.
\nFor that reason, the css engine pierces shadow roots. More specifically, every Descendant combinator pierces an arbitrary number of open shadow roots, including the implicit descendant combinator at the start of the selector.
\nThat means, it is not necessary to select each shadow host, open its shadow root and select the next shadow host until you reach the element that should be controlled.
\nCSS:light
\n\n
css:light
engine is equivalent to Document.querySelector and behaves according to the CSS spec. However, it does not pierce shadow roots.\n
css
engine first searches for elements in the light dom in the iteration order, and then recursively inside open shadow roots in the iteration order. It does not search inside closed shadow roots or iframes.Examples:
\n\n<article>\n <div>In the light dom</div>\n <div slot='myslot'>In the light dom, but goes into the shadow slot</div>\n <open mode shadow root>\n <div class='in-the-shadow'>\n <span class='content'>\n In the shadow dom\n <open mode shadow root>\n <li id='target'>Deep in the shadow</li>\n </open mode shadow root>\n </span>\n </div>\n <slot name='myslot'></slot>\n </open mode shadow root>\n</article>\n\nNote that
\n<open mode shadow root>
is not an html element, but rather a shadow root created withelement.attachShadow({mode: 'open'})
.\n
\n- Both
\n\"css=article div\"
and\"css:light=article div\"
match the first<div>In the light dom</div>
.- Both
\n\"css=article > div\"
and\"css:light=article > div\"
match twodiv
elements that are direct children of thearticle
.- \n
\"css=article .in-the-shadow\"
matches the<div class='in-the-shadow'>
, piercing the shadow root, while\"css:light=article .in-the-shadow\"
does not match anything.- \n
\"css:light=article div > span\"
does not match anything, because both light-domdiv
elements do not contain aspan
.- \n
\"css=article div > span\"
matches the<span class='content'>
, piercing the shadow root.- \n
\"css=article > .in-the-shadow\"
does not match anything, because<div class='in-the-shadow'>
is not a direct child ofarticle
- \n
\"css:light=article > .in-the-shadow\"
does not match anything.- \n
\"css=article li#target\"
matches the<li id='target'>Deep in the shadow</li>
, piercing two shadow roots.text:light
\n\n
text
engine open pierces shadow roots similarly tocss
, whiletext:light
does not. Text engine first searches for elements in the light dom in the iteration order, and then recursively inside open shadow roots in the iteration order. It does not search inside closed shadow roots or iframes.id, data-testid, data-test-id, data-test and their :light counterparts
\nAttribute engines are selecting based on the corresponding attribute value. For example:
\ndata-test-id=foo
is equivalent tocss=[data-test-id=\"foo\"]
, andid:light=foo
is equivalent tocss:light=[id=\"foo\"]
.Element reference syntax
\nIt is possible to get a reference to a Locator by using Get Element and Get Elements keywords. Keywords do not save reference to an element in the HTML document, instead it saves reference to a Playwright Locator. In nutshell Locator captures the logic of how to retrieve that element from the page. Each time an action is performed, the locator re-searches the elements in the page. This reference can be used as a first part of a selector by using a special selector syntax element=. like this:
\n\n${ref}= Get Element .some_class\n Click ${ref} >> .some_child # Locator searches an element from the page.\n Click ${ref} >> .other_child # Locator searches again an element from the page.\n\nThe .some_child and .other_child selectors in the example are relative to the element referenced by ${ref}. Please note that frame piercing is not possible with element reference.
\nAssertions
\nKeywords that accept arguments
\nassertion_operator
<AssertionOperator> andassertion_expected
can optionally assert that a specified condition holds. Keywords will return the value even when the assertion is performed by the keyword.Assert will retry and fail only after a specified timeout. See Importing and
\nretry_assertions_for
(default is 1 second) for configuring this timeout.Currently supported assertion operators are:
\n\n
\n\n \nOperator \nAlternative Operators \nDescription \nValidate Equivalent \n\n \n\n ==
\n equal
,equals
,should be
Checks if returned value is equal to expected value. \n\n value == expected
\n \n\n !=
\n inequal
,should not be
Checks if returned value is not equal to expected value. \n\n value != expected
\n \n\n >
\n greater than
Checks if returned value is greater than expected value. \n\n value > expected
\n \n\n >=
\n Checks if returned value is greater than or equal to expected value. \n\n value >= expected
\n \n\n <
\n less than
Checks if returned value is less than expected value. \n\n value < expected
\n \n\n <=
\n Checks if returned value is less than or equal to expected value. \n\n value <= expected
\n \n\n *=
\n contains
Checks if returned value contains expected value as substring. \n\n expected in value
\n \n\n \n not contains
Checks if returned value does not contain expected value as substring. \n\n expected in value
\n \n\n ^=
\n should start with
,starts
Checks if returned value starts with expected value. \n\n re.search(f\"^{expected}\", value)
\n \n\n $=
\n should end with
,ends
Checks if returned value ends with expected value. \n\n re.search(f\"{expected}$\", value)
\n \n\n matches
\n Checks if given RegEx matches minimum once in returned value. \n\n re.search(expected, value)
\n \n\n validate
\n Checks if given Python expression evaluates to \nTrue
.\n \n \n\n evaluate
\n then
When using this operator, the keyword does return the evaluated Python expression. \n\n Currently supported formatters for assertions are:
\n\n
\n\n \nFormatter \nDescription \n\n \n\n normalize spaces
Substitutes multiple spaces to single space from the value \n\n \n\n strip
Removes spaces from the beginning and end of the value \n\n \n\n case insensitive
Converts value to lower case before comparing \n\n \n\n apply to expected
Applies rules also for the expected value \nFormatters are applied to the value before assertion is performed and keywords returns a value where rule is applied. Formatter is only applied to the value which keyword returns and not all rules are valid for all assertion operators. If
\napply to expected
formatter is defined, then formatters are then formatter are also applied to expected value.By default, keywords will provide an error message if an assertion fails. Default error messages can be overwritten with a
\nmessage
argument. Themessage
argument accepts {value}, {value_type}, {expected} and {expected_type} format options. The {value} is the value returned by the keyword and the {expected} is the expected value defined by the user, usually the value in theassertion_expected
argument. The {value_type} and {expected_type} are the type definitions from {value} and {expected} arguments. In similar fashion as Python type returns type definition. Assertions will retry untiltimeout
has expired if they do not pass.The assertion
\nassertion_expected
value is not converted by the library and is used as is. Therefore when assertion is made, theassertion_expected
argument value and value returned the keyword must have the same type. If types are not the same, assertion will fail. Example Get Text always returns a string and has to be compared with a string, even the returned value might look like a number.Other Keywords have other specific types they return. Get Element Count always returns an integer. Get Bounding Box and Get Viewport Size can be filtered. They return a dictionary without a filter and a number when filtered. These Keywords do automatic conversion for the expected value if a number is returned.
\n* < less or greater > With Strings* Comparisons of strings with
\ngreater than
orless than
compares each character, starting from 0 regarding where it stands in the code page. Example:A < Z
,Z < a
,ac < dc It does never compare the length of elements. Neither lists nor strings. The comparison stops at the first character that is different. Examples: `'abcde' < 'abd'
,'100.000' < '2'
In Python 3 and therefore also in Browser it is not possible to compare numbers with strings with a greater or less operator. On keywords that return numbers, the given expected value is automatically converted to a number before comparison.The getters Get Page State and Get Browser Catalog return a dictionary. Values of the dictionary can directly asserted. Pay attention of possible types because they are evaluated in Python. For example:
\n\nGet Page State validate 2020 >= value['year'] # Comparison of numbers\nGet Page State validate \"IMPORTANT MESSAGE!\" == value['message'] # Comparison of strings\n\nThe 'then' or 'evaluate' closure
\nKeywords that accept arguments
\nassertion_operator
andassertion_expected
can optionally also usethen
orevaluate
closure to modify the returned value with BuiltIn Evaluate. Actual value can be accessed withvalue
.For example
\nGet Title then 'TITLE: '+value
. See Builtin Evaluating expressions for more info on the syntax.Examples
\n\n# Keyword Selector Key Assertion Operator Assertion Expected\nGet Title equal Page Title\nGet Title ^= Page\nGet Style //*[@id=\"div-element\"] width > 100\nGet Title matches \\\\w+\\\\s\\\\w+\nGet Title validate value == \"Login Page\"\nGet Title evaluate value if value == \"some value\" else \"something else\"\n\nImplicit waiting
\nBrowser library and Playwright have many mechanisms to help in waiting for elements. Playwright will auto-wait before performing actions on elements. Please see Auto-waiting on Playwright documentation for more information.
\nOn top of Playwright auto-waiting Browser assertions will wait and retry for specified time before failing any Assertions. Time is specified in Browser library initialization with
\nretry_assertions_for
.Browser library also includes explicit waiting keywords such as Wait for Elements State if more control for waiting is needed.
\nExperimental: Re-using same node process
\nBrowser library integrated nodejs and python. The NodeJS side can be also executed as a standalone process. Browser libraries running on the same machine can talk to that instead of starting new node processes. This can speed execution when running tests parallel. To start node side run on the directory when the Browser package is
\nPLAYWRIGHT_BROWSERS_PATH=0 node Browser/wrapper/index.js PORT
.\n
PORT
is the port you want to use for the node process. To execute tests then with pabot for example doROBOT_FRAMEWORK_BROWSER_NODE_PORT=PORT pabot ..
.Experimental: Provide parameters to node process
\nBrowser library is integrated with NodeJSand and Python. Browser library starts a node process, to communicate Playwright API in NodeJS side. It is possible to provide parameters for the started node process by defining ROBOT_FRAMEWORK_BROWSER_NODE_DEBUG_OPTIONS environment variable, before starting the test execution. Example:
\nROBOT_FRAMEWORK_BROWSER_NODE_DEBUG_OPTIONS=--inspect;robot path/to/tests
. There can be multiple arguments defined in the environment variable and arguments must be separated with comma.Scope Setting
\nSome keywords which manipulates library settings have a scope argument. With that scope argument one can set the \"live time\" of that setting. Available Scopes are: Global, Suite and Test/Task See Scope. Is a scope finished, this scoped setting, like timeout, will no longer be used.
\nLive Times:
\n\n
\n- A Global scope will live forever until it is overwritten by another Global scope. Or locally temporarily overridden by a more narrow scope.
\n- A Suite scope will locally override the Global scope and live until the end of the Suite within it is set, or if it is overwritten by a later setting with Global or same scope. Children suite does inherit the setting from the parent suite but also may have its own local Suite setting that then will be inherited to its children suites.
\n- A Test or Task scope will be inherited from its parent suite but when set, lives until the end of that particular test or task.
\nA new set higher order scope will always remove the lower order scope which may be in charge. So the setting of a Suite scope from a test, will set that scope to the robot file suite where that test is and removes the Test scope that may have been in place.
\nExtending Browser library with a JavaScript module
\nBrowser library can be extended with JavaScript. The module must be in CommonJS format that Node.js uses. You can translate your ES6 module to Node.js CommonJS style with Babel. Many other languages can be also translated to modules that can be used from Node.js. For example TypeScript, PureScript and ClojureScript just to mention few.
\n\nasync function myGoToKeyword(url, args, page, logger, playwright) {\n logger(args.toString())\n playwright.coolNewFeature()\n return await page.goto(url);\n}\n\nFunctions can contain any number of arguments and arguments may have default values.
\nThere are some reserved arguments that are not accessible from Robot Framework side. They are injected to the function if they are in the arguments:
\n\n
page
: the playwright Page object.\n
args
: the rest of values from Robot Framework keyword call*args
.\n
logger
: callback function that takes strings as arguments and writes them to robot log. Can be called multiple times.\n
playwright
: playwright module (* from 'playwright'). Useful for integrating with Playwright features that Browser library doesn't support with it's own keywords. API docsalso argument name
\nself
can not be used.Example module.js
\n\nasync function myGoToKeyword(pageUrl, page) {\n await page.goto(pageUrl);\n return await page.title();\n}\nexports.__esModule = true;\nexports.myGoToKeyword = myGoToKeyword;\n\nExample Robot Framework side
\n\n* Settings *\nLibrary Browser jsextension=${CURDIR}/module.js\n\n* Test Cases *\nHello\n New Page\n ${title}= myGoToKeyword https://playwright.dev\n Should be equal ${title} Playwright\n\nAlso selector syntax can be extended with a custom selector using a js module
\nExample module keyword for custom selector registering
\n\nasync function registerMySelector(playwright) {\nplaywright.selectors.register(\"myselector\", () => ({\n // Returns the first element matching given selector in the root's subtree.\n query(root, selector) {\n return root.querySelector(a[data-title=\"${selector}\"]);\n },\n\n // Returns all elements matching given selector in the root's subtree.\n queryAll(root, selector) {\n return Array.from(root.querySelectorAll(a[data-title=\"${selector}\"]));\n }\n}));\nreturn 1;\n}\nexports.__esModule = true;\nexports.registerMySelector = registerMySelector;\n\nPlugins
\nBrowser library offers plugins as a way to modify and add library keywords and modify some of the internal functionality without creating a new library or hacking the source code. See plugin API documentation for further details.
\nAutomatic headless detection is supported when opening a new browser.
", "version": "17.5.2", - "generated": "2024-12-06 10:56:41", + "generated": "2024-12-06 10:58:12", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -24222,7 +24222,7 @@ "name": "RPA.Browser.Selenium", "doc": "SeleniumLibrary is a web testing library for Robot Framework.
\nThis document explains how to use keywords provided by SeleniumLibrary. For information about installation, support, and more, please visit the project pages. For more information about Robot Framework, see http://robotframework.org.
\nSeleniumLibrary uses the Selenium WebDriver modules internally to control a web browser. See http://seleniumhq.org for more information about Selenium in general and SeleniumLibrary README.rst Browser drivers chapter for more details about WebDriver binary installation.
\n\n
\n- Locating elements
\n- Browser and Window
\n- Timeouts, waits, and delays
\n- Run-on-failure functionality
\n- Boolean arguments
\n- EventFiringWebDriver
\n- Thread support
\n- Plugins
\n- Auto closing browser
\n- Importing
\n- Keywords
\nLocating elements
\nAll keywords in SeleniumLibrary that need to interact with an element on a web page take an argument typically named
\nlocator
that specifies how to find the element. Most often the locator is given as a string using the locator syntax described below, but using WebElements is possible too.Locator syntax
\nSeleniumLibrary supports finding elements based on different strategies such as the element id, XPath expressions, or CSS selectors. The strategy can either be explicitly specified with a prefix or the strategy can be implicit.
\nDefault locator strategy
\nBy default, locators are considered to use the keyword specific default locator strategy. All keywords support finding elements based on
\nid
andname
attributes, but some keywords support additional attributes or other values that make sense in their context. For example, Click Link supports thehref
attribute and the link text and addition to the normalid
andname
.Examples:
\n\n
\n\n \nClick Element \nexample \n# Match based on \nid
orname
.\n \nClick Link \nexample \n# Match also based on link text and \nhref
.\n \nClick Button \nexample \n# Match based on \nid
,name
orvalue
.If a locator accidentally starts with a prefix recognized as explicit locator strategy or implicit XPath strategy, it is possible to use the explicit
\ndefault
prefix to enable the default strategy.Examples:
\n\n
\n\n \nClick Element \nname:foo \n# Find element with name \nfoo
.\n \nClick Element \ndefault:name:foo \n# Use default strategy with value \nname:foo
.\n \nClick Element \n//foo \n# Find element using XPath \n//foo
.\n \nClick Element \ndefault: //foo \n# Use default strategy with value \n//foo
.Explicit locator strategy
\nThe explicit locator strategy is specified with a prefix using either syntax
\nstrategy:value
orstrategy=value
. The former syntax is preferred because the latter is identical to Robot Framework's named argument syntax and that can cause problems. Spaces around the separator are ignored, soid:foo
,id: foo
andid : foo
are all equivalent.Locator strategies that are supported by default are listed in the table below. In addition to them, it is possible to register custom locators.
\n\n
\n\n \nStrategy \nMatch based on \nExample \n\n \nid \nElement \nid
.\n id:example
\n \nname \n\n name
attribute.\n name:example
\n \nidentifier \nEither \nid
orname
.\n identifier:example
\n \nclass \nElement \nclass
.\n class:example
\n \ntag \nTag name. \n\n tag:div
\n \nxpath \nXPath expression. \n\n xpath://div[@id=\"example\"]
\n \ncss \nCSS selector. \n\n css:div#example
\n \ndom \nDOM expression. \n\n dom:document.images[5]
\n \nlink \nExact text a link has. \n\n link:The example
\n \npartial link \nPartial link text. \n\n partial link:he ex
\n \nsizzle \nSizzle selector deprecated. \n\n sizzle:div.example
\n \ndata \nElement \ndata-*
attribute\n data:id:my_id
\n \njquery \njQuery expression. \n\n jquery:div.example
\n \ndefault \nKeyword specific default behavior. \n\n default:example
See the Default locator strategy section below for more information about how the default strategy works. Using the explicit
\ndefault
prefix is only necessary if the locator value itself accidentally matches some of the explicit strategies.Different locator strategies have different pros and cons. Using ids, either explicitly like
\nid:foo
or by using the default locator strategy simply likefoo
, is recommended when possible, because the syntax is simple and locating elements by id is fast for browsers. If an element does not have an id or the id is not stable, other solutions need to be used. If an element has a unique tag name or class, usingtag
,class
orcss
strategy liketag:h1
,class:example
orcss:h1.example
is often an easy solution. In more complex cases using XPath expressions is typically the best approach. They are very powerful but a downside is that they can also get complex.Examples:
\n\n
\n\n \nClick Element \nid:foo \n# Element with id 'foo'. \n\n \nClick Element \ncss:div#foo h1 \n# h1 element under div with id 'foo'. \n\n \nClick Element \nxpath: //div[@id=\"foo\"]//h1 \n# Same as the above using XPath, not CSS. \n\n \nClick Element \nxpath: //*[contains(text(), \"example\")] \n# Element containing text 'example'. \nNOTE:
\n\n
\n- The
\nstrategy:value
syntax is only supported by SeleniumLibrary 3.0 and newer.- Using the
\nsizzle
strategy or its aliasjquery
requires that the system under test contains the jQuery library.- Prior to SeleniumLibrary 3.0, table related keywords only supported
\nxpath
,css
andsizzle/jquery
strategies.- \n
data
strategy is conveniance locator that will construct xpath from the parameters. If you have element like <div data-automation=\"automation-id-2\">, you locate the element viadata:automation:automation-id-2
. This feature was added in SeleniumLibrary 5.2.0Implicit XPath strategy
\nIf the locator starts with
\n//
or multiple opening parenthesis in front of the//
, the locator is considered to be an XPath expression. In other words, using//div
is equivalent to using explicitxpath://div
and((//div))
is equivalent to using explicitxpath:((//div))
Examples:
\n\n
\n\n \nClick Element \n//div[@id=\"foo\"]//h1 \n\n \nClick Element \n(//div)[2] \nThe support for the
\n(//
prefix is new in SeleniumLibrary 3.0. Supporting multiple opening parenthesis is new in SeleniumLibrary 5.0.Chaining locators
\nIt is possible chain multiple locators together as single locator. Each chained locator must start with locator strategy. Chained locators must be separated with single space, two greater than characters and followed with space. It is also possible mix different locator strategies, example css or xpath. Also a list can also be used to specify multiple locators. This is useful, is some part of locator would match as the locator separator but it should not. Or if there is need to existing WebElement as locator.
\nAlthough all locators support chaining, some locator strategies do not abey the chaining. This is because some locator strategies use JavaScript to find elements and JavaScript is executed for the whole browser context and not for the element found be the previous locator. Chaining is supported by locator strategies which are based on Selenium API, like xpath or css, but example chaining is not supported by sizzle or `jquery
\nExamples:
\n\n
\n\n \nClick Element \ncss:.bar >> xpath://a \n# To find a link which is present after an element with class \"bar\" \nList examples:
\n\n
\n\n \n${locator_list} = \nCreate List \ncss:div#div_id \nxpath://*[text(), \" >> \"] \n\n \nPage Should Contain Element \n${locator_list} \n\n \n \n \n${element} = \nGet WebElement \nxpath://*[text(), \" >> \"] \n\n \n \n${locator_list} = \nCreate List \ncss:div#div_id \n${element} \n\n \nPage Should Contain Element \n${locator_list} \n\n \n Chaining locators in new in SeleniumLibrary 5.0
\nUsing WebElements
\nIn addition to specifying a locator as a string, it is possible to use Selenium's WebElement objects. This requires first getting a WebElement, for example, by using the Get WebElement keyword.
\n\n
\n\n \n${elem} = \nGet WebElement \nid:example \n\n \nClick Element \n${elem} \n\n Custom locators
\nIf more complex lookups are required than what is provided through the default locators, custom lookup strategies can be created. Using custom locators is a two part process. First, create a keyword that returns a WebElement that should be acted on:
\n\n
\n\n \nCustom Locator Strategy \n[Arguments] \n${browser} \n${locator} \n${tag} \n${constraints} \n\n \n\n ${element}= \nExecute Javascript \nreturn window.document.getElementById('${locator}'); \n\n \n \n \n\n [Return] \n${element} \n\n \n \n This keyword is a reimplementation of the basic functionality of the
\nid
locator where${browser}
is a reference to a WebDriver instance and${locator}
is the name of the locator strategy. To use this locator, it must first be registered by using the Add Location Strategy keyword:\n
\n\n \nAdd Location Strategy \ncustom \nCustom Locator Strategy \nThe first argument of Add Location Strategy specifies the name of the strategy and it must be unique. After registering the strategy, the usage is the same as with other locators:
\n\n
\n\n \nClick Element \ncustom:example \nSee the Add Location Strategy keyword for more details.
\nBrowser and Window
\nThere is different conceptual meaning when SeleniumLibrary talks about windows or browsers. This chapter explains those differences.
\nBrowser
\nWhen Open Browser or Create WebDriver keyword is called, it will create a new Selenium WebDriver instance by using the Selenium WebDriver API. In SeleniumLibrary terms, a new browser is created. It is possible to start multiple independent browsers (Selenium Webdriver instances) at the same time, by calling Open Browser or Create WebDriver multiple times. These browsers are usually independent of each other and do not share data like cookies, sessions or profiles. Typically when the browser starts, it creates a single window which is shown to the user.
\nWindow
\nWindows are the part of a browser that loads the web site and presents it to the user. All content of the site is the content of the window. Windows are children of a browser. In SeleniumLibrary browser is a synonym for WebDriver instance. One browser may have multiple windows. Windows can appear as tabs, as separate windows or pop-ups with different position and size. Windows belonging to the same browser typically share the sessions detail, like cookies. If there is a need to separate sessions detail, example login with two different users, two browsers (Selenium WebDriver instances) must be created. New windows can be opened example by the application under test or by example Execute Javascript keyword:
\n\nExecute Javascript window.open() # Opens a new window with location about:blank\n\nThe example below opens multiple browsers and windows, to demonstrate how the different keywords can be used to interact with browsers, and windows attached to these browsers.
\nStructure:
\n\nBrowserA\n Window 1 (location=https://robotframework.org/)\n Window 2 (location=https://robocon.io/)\n Window 3 (location=https://github.com/robotframework/)\n\nBrowserB\n Window 1 (location=https://github.com/)\n\nExample:
\n\n
\n\n \nOpen Browser \nhttps://robotframework.org \n${BROWSER} \nalias=BrowserA \n# BrowserA with first window is opened. \n\n \nExecute Javascript \nwindow.open() \n\n \n # In BrowserA second window is opened. \n\n \nSwitch Window \nlocator=NEW \n\n \n # Switched to second window in BrowserA \n\n \nGo To \nhttps://robocon.io \n\n \n # Second window navigates to robocon site. \n\n \nExecute Javascript \nwindow.open() \n\n \n # In BrowserA third window is opened. \n\n \n${handle} \nSwitch Window \nlocator=NEW \n\n # Switched to third window in BrowserA \n\n \nGo To \nhttps://github.com/robotframework/ \n\n \n # Third windows goes to robot framework github site. \n\n \nOpen Browser \nhttps://github.com \n${BROWSER} \nalias=BrowserB \n# BrowserB with first windows is opened. \n\n \n${location} \nGet Location \n\n \n # ${location} is: https://www.github.com \n\n \nSwitch Window \n${handle} \nbrowser=BrowserA \n\n # BrowserA second windows is selected. \n\n \n${location} \nGet Location \n\n \n # ${location} = https://robocon.io/ \n\n \n@{locations 1} \nGet Locations \n\n \n # By default, lists locations under the currectly active browser (BrowserA). \n\n \n@{locations 2} \nGet Locations \nbrowser=ALL \n\n # By using browser=ALL argument keyword list all locations from all browsers. \nThe above example, @{locations 1} contains the following items: https://robotframework.org/, https://robocon.io/ and https://github.com/robotframework/'. The @{locations 2} contains the following items: https://robotframework.org/, https://robocon.io/, https://github.com/robotframework/' and 'https://github.com/.
\nTimeouts, waits, and delays
\nThis section discusses different ways how to wait for elements to appear on web pages and to slow down execution speed otherwise. It also explains the time format that can be used when setting various timeouts, waits, and delays.
\nTimeout
\nSeleniumLibrary contains various keywords that have an optional
\ntimeout
argument that specifies how long these keywords should wait for certain events or actions. These keywords include, for example,Wait ...
keywords and keywords related to alerts. Additionally Execute Async Javascript. Although it does not havetimeout
, argument, uses a timeout to define how long asynchronous JavaScript can run.The default timeout these keywords use can be set globally either by using the Set Selenium Timeout keyword or with the
\ntimeout
argument when importing the library. If no default timeout is set globally, the default is 5 seconds. If None is specified for the timeout argument in the keywords, the default is used. See time format below for supported timeout syntax.Implicit wait
\nImplicit wait specifies the maximum time how long Selenium waits when searching for elements. It can be set by using the Set Selenium Implicit Wait keyword or with the
\nimplicit_wait
argument when importing the library. See Selenium documentation for more information about this functionality.See time format below for supported syntax.
\nPage load
\nPage load timeout is the amount of time to wait for page load to complete until a timeout exception is raised.
\nThe default page load timeout can be set globally when importing the library with the
\npage_load_timeout
argument or by using the Set Selenium Page Load Timeout keyword.See time format below for supported timeout syntax.
\nSupport for page load is new in SeleniumLibrary 6.1
\nSelenium speed
\nSelenium execution speed can be slowed down globally by using Set Selenium speed keyword. This functionality is designed to be used for demonstrating or debugging purposes. Using it to make sure that elements appear on a page is not a good idea. The above-explained timeouts and waits should be used instead.
\nSee time format below for supported syntax.
\nTime format
\nAll timeouts and waits can be given as numbers considered seconds (e.g.
\n0.5
or42
) or in Robot Framework's time syntax (e.g.1.5 seconds
or1 min 30 s
). For more information about the time syntax see the Robot Framework User Guide.Run-on-failure functionality
\nSeleniumLibrary has a handy feature that it can automatically execute a keyword if any of its own keywords fails. By default, it uses the Capture Page Screenshot keyword, but this can be changed either by using the Register Keyword To Run On Failure keyword or with the
\nrun_on_failure
argument when importing the library. It is possible to use any keyword from any imported library or resource file.The run-on-failure functionality can be disabled by using a special value
\nNOTHING
or anything considered false (see Boolean arguments) such asNONE
.Boolean arguments
\nStarting from 5.0 SeleniumLibrary relies on Robot Framework to perform the boolean conversion based on keyword arguments type hint. More details in Robot Framework user guide
\nPlease note SeleniumLibrary 3 and 4 did have own custom methods to covert arguments to boolean values.
\nEventFiringWebDriver
\nThe SeleniumLibrary offers support for EventFiringWebDriver. See the Selenium and SeleniumLibrary EventFiringWebDriver support documentation for further details.
\nEventFiringWebDriver is new in SeleniumLibrary 4.0
\nThread support
\nSeleniumLibrary is not thread-safe. This is mainly due because the underlying Selenium tool is not thread-safe within one browser/driver instance. Because of the limitation in the Selenium side, the keywords or the API provided by the SeleniumLibrary is not thread-safe.
\nPlugins
\nSeleniumLibrary offers plugins as a way to modify and add library keywords and modify some of the internal functionality without creating a new library or hacking the source code. See plugin API documentation for further details.
\nPlugin API is new SeleniumLibrary 4.0
\nAuto closing browser
\nBy default, the browser instances created during a task execution are closed at the end of the task. This can be prevented with the
\nauto_close
parameter when importing the library.The value of the parameter needs to be set to
", "version": "6.3.0", - "generated": "2024-12-06 10:56:41", + "generated": "2024-12-06 10:58:13", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -33711,7 +33711,7 @@ "name": "RPA.Browser.common", "doc": "False
or any object evaluated as false (see Boolean arguments).Documentation for library
", "version": "", - "generated": "2024-12-06 10:56:41", + "generated": "2024-12-06 10:58:13", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -33802,7 +33802,7 @@ "name": "RPA.Calendar", "doc": "RPA.Browser.common
.\n\n", "version": "", - "generated": "2024-12-06 10:56:41", + "generated": "2024-12-06 10:58:13", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -35072,7 +35072,7 @@ "name": "RPA.Cloud.AWS", "doc": "Library for handling different operations for date and time\nhandling especially in business days and holiday contexts.
\nUtilizing pendulum and\nholidays packages.
\nLibrary is by default using days from Monday to Friday as business\ndays, but that can be changed by giving list of weekdays to\nSet Business Days keyword. A weekday is given as a integer, the\n0 for Sunday and 6 for Saturday.
\nCommon country holidays are respected when getting next and previous\nbusiness days, but custom holidays can be added into consideration\nusing keyword Add Custom Holidays keyword.
\nSome dates containing for example month names are in English (en), but\nthe locale of the library can be changed with keyword Set Locale or\nfor specific keyword if that has a locale parameter.
\n\n\n", "version": "", - "generated": "2024-12-06 10:56:42", + "generated": "2024-12-06 10:58:14", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -37523,7 +37523,7 @@ "name": "RPA.Cloud.Azure", "doc": "AWS is a library for operating with Amazon AWS services S3, SQS,\nTextract and Comprehend.
\nServices are initialized with keywords like Init S3 Client for S3.
\nAWS authentication
\nAuthentication for AWS is set with key id and access key which can be given to the library\nin three different ways.
\n\n
\n- Method 1 as environment variables, AWS_KEY_ID and AWS_KEY.
\n- Method 2 as keyword parameters to Init Textract Client for example.
\n- Method 3 as Robocorp vault secret. The vault name needs to be given in library init or\nwith keyword Set Robocorp Vault. Secret keys are expected to match environment variable\nnames.
\nNote. Starting from rpaframework-aws 1.0.3 region can be given as environment\nvariable AWS_REGION or include as Robocorp Vault secret with the same key name.
\nRedshift Data authentication: Depending on the authorization method, use\none of the following combinations of request parameters, which can only\nbe passed via method 2:
\n\n\n\n
\n- Secrets Manager - when connecting to a cluster, specify the Amazon\nResource Name (ARN) of the secret, the database name, and the\ncluster identifier that matches the cluster in the secret. When\nconnecting to a serverless endpoint, specify the Amazon Resource\nName (ARN) of the secret and the database name.
\n- Temporary credentials - when connecting to a cluster, specify the\ncluster identifier, the database name, and the database user name.\nAlso, permission to call the redshift:GetClusterCredentials\noperation is required. When connecting to a serverless endpoint,\nspecify the database name.
\nRole Assumption: With the use of the STS service client, you are able\nto assume another role, which will return temporary credentials. The\ntemporary credentials will include an access key and session token, see\nkeyword documentation for Assume Role for details of how the\ncredentials are returned. You can use these temporary credentials\nas part of method 2, but you must also include the session token.
\nMethod 1. credentials using environment variable
\n\n*** Settings ***\nLibrary RPA.Cloud.AWS\n\n*** Tasks ***\nInit AWS services\n # NO parameters for client, expecting to get credentials\n # with AWS_KEY, AWS_KEY_ID and AWS_REGION environment variables\n Init S3 Client\n\nMethod 2. credentials with keyword parameter
\n\n*** Settings ***\nLibrary RPA.Cloud.AWS region=us-east-1\n\n*** Tasks ***\nInit AWS services\n Init S3 Client aws_key_id=${AWS_KEY_ID} aws_key=${AWS_KEY}\n\nMethod 3. setting Robocorp Vault in the library init
\n\n*** Settings ***\nLibrary RPA.Cloud.AWS robocorp_vault_name=aws\n\n*** Tasks ***\nInit AWS services\n Init S3 Client use_robocorp_vault=${TRUE}\n\nMethod 3. setting Robocorp Vault with keyword
\n\n*** Settings ***\nLibrary RPA.Cloud.AWS\n\n*** Tasks ***\nInit AWS services\n Set Robocorp Vault vault_name=aws\n Init Textract Client use_robocorp_vault=${TRUE}\n\nRequirements
\nThe default installation depends on boto3 library. Due to the size of the\ndependency, this library is available separate package rpaframework-aws but can\nalso be installed as an optional package for rpaframework.
\nRecommended installation is rpaframework-aws plus rpaframework package.\nRemember to check latest versions from rpaframework Github repository.
\n\nchannels:\n - conda-forge\ndependencies:\n - python=3.7.5\n - pip=20.1\n - pip:\n - rpaframework==13.0.2\n - rpaframework-aws==1.0.3\n\nExample
\n\n*** Settings ***\nLibrary RPA.Cloud.AWS region=us-east-1\n\n*** Variables ***\n${BUCKET_NAME} testbucket12213123123\n\n*** Tasks ***\nUpload a file into S3 bucket\n [Setup] Init S3 Client\n Upload File ${BUCKET_NAME} ${/}path${/}to${/}file.pdf\n @{files} List Files ${BUCKET_NAME}\n FOR ${file} IN @{files}\n Log ${file}\n END\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:42", + "generated": "2024-12-06 10:58:14", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -38503,7 +38503,7 @@ "name": "RPA.Cloud.Google", "doc": "Azure is a library for operating with Microsoft Azure API endpoints.
\nList of supported service names:
\n\n
\n- computervision (Azure Computer Vision API)
\n- face (Azure Face API)
\n- speech (Azure Speech Services API)
\n- textanalytics (Azure Text Analytics API)
\nAzure authentication
\nAuthentication for Azure is set with service subscription key which can be given to the library\nin two different ways.
\n\n
\n- Method 1 as environment variables, either service specific environment variable\nfor example AZURE_TEXTANALYTICS_KEY or with common key AZURE_SUBSCRIPTION_KEY which\nwill be used for all the services.
\n- Method 2 as Robocorp Vault secret. The vault name needs to be given in library init or\nwith keyword Set Robocorp Vault. Secret keys are expected to match environment variable\nnames.
\nMethod 1. subscription key using environment variable
\n\n*** Settings ***\nLibrary RPA.Cloud.Azure\n\n*** Tasks ***\nInit Azure services\n # NO parameters for client, expecting to get subscription key\n # with AZURE_TEXTANALYTICS_KEY or AZURE_SUBSCRIPTION_KEY environment variable\n Init Text Analytics Service\n\nMethod 2. setting Robocorp Vault in the library init
\n\n*** Settings ***\nLibrary RPA.Cloud.Azure robocorp_vault_name=azure\n\n*** Tasks ***\nInit Azure services\n Init Text Analytics Service use_robocorp_vault=${TRUE}\n\nMethod 2. setting Robocorp Vault with keyword
\n\n*** Settings ***\nLibrary RPA.Cloud.Azure\n\n*** Tasks ***\nInit Azure services\n Set Robocorp Vault vault_name=googlecloud\n Init Text Analytics Service use_robocorp_vault=${TRUE}\n\nReferences
\nList of supported language locales - Azure locale list
\nList of supported region identifiers - Azure region list
\nExamples
\nRobot Framework
\nThis is a section which describes how to use the library in your\nRobot Framework tasks.
\n\n*** Settings ***\nLibrary RPA.Cloud.Azure\n\n*** Variables ***\n${IMAGE_URL} IMAGE_URL\n${FEATURES} Faces,ImageType\n\n*** Tasks ***\nVisioning image information\n Init Computer Vision Service\n &{result} Vision Analyze image_url=${IMAGE_URL} visual_features=${FEATURES}\n @{faces} Set Variable ${result}[faces]\n FOR ${face} IN @{faces}\n Log Age: ${face}[age], Gender: ${face}[gender], Rectangle: ${face}[faceRectangle]\n END\n\nPython
\nThis is a section which describes how to use the library in your\nown Python modules.
\n\nlibrary = Azure()\nlibrary.init_text_analytics_service()\nlibrary.init_face_service()\nlibrary.init_computer_vision_service()\nlibrary.init_speech_service("westeurope")\n\nresponse = library.sentiment_analyze(\n text="The rooms were wonderful and the staff was helpful."\n)\nresponse = library.detect_face(\n image_file=PATH_TO_FILE,\n face_attributes="age,gender,smile,hair,facialHair,emotion",\n)\nfor item in response:\n gender = item["faceAttributes"]["gender"]\n age = item["faceAttributes"]["age"]\n print(f"Detected a face, gender:{gender}, age: {age}")\n\nresponse = library.vision_analyze(\n image_url=URL_TO_IMAGE,\n visual_features="Faces,ImageType",\n)\nmeta = response['metadata']\nprint(\n f"Image dimensions meta['width']}x{meta['height']} pixels"\n)\n\nfor face in response["faces"]:\n left = face["faceRectangle"]["left"]\n top = face["faceRectangle"]["top"]\n width = face["faceRectangle"]["width"]\n height = face["faceRectangle"]["height"]\n print(f"Detected a face, gender:{face['gender']}, age: {face['age']}")\n print(f" Face rectangle: (left={left}, top={top})")\n print(f" Face rectangle: (width={width}, height={height})")\n\nlibrary.text_to_speech(\n text="Developer tools for open-source RPA leveraging the Robot Framework ecosystem",\n neural_voice_style="cheerful",\n target_file='output.mp3'\n)\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:43", + "generated": "2024-12-06 10:58:14", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -43971,7 +43971,7 @@ "name": "RPA.Crypto", "doc": "Google is a library for operating with Google API endpoints.
\nInstallation
\nUsage requires the following steps:
\n\n
\n- Create a GCP project
\n- Enable approriate APIs
\n- Create credentials (OAuth or service account)
\n- Install rpaframework-google package
\nCheck the latest package version from PyPI.
\nGoogle authentication
\nAuthentication for Google is set with service account JSON file which can be given to the library\nin three different ways or with OAuth2 token, which is used for OAuth authentication.
\nSee library authentication examples for more information.
\nBasic usage examples
\nPython
\n\nfrom RPA.Cloud.Google import Google\n\nlibrary = Google()\nservice_account = '/path/to/service_account.json'\n\nlibrary.init_vision(service_account)\nlibrary.init_text_to_speech(service_account)\n\nresponse = library.detect_text('imagefile.png', 'result.json')\nlibrary.synthesize_speech('I want this said aloud', target_file='said.mp3')\n\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Cloud.Google\n\n*** Variables ***\n${SERVICE_ACCOUNT} ${/}path${/}to${/}service_account.json\n${BUCKET_NAME} testbucket12213123123\n\n*** Tasks ***\nUpload a file into a new storage bucket\n [Setup] Init Storage ${SERVICE_ACCOUNT}\n Create Storage Bucket ${BUCKET_NAME}\n Upload Storage File ${BUCKET_NAME}\n ... ${/}path${/}to${/}file.pdf\n ... myfile.pdf\n @{files} List Storage Files ${BUCKET_NAME}\n FOR ${file} IN @{files}\n Log ${file}\n END\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:43", + "generated": "2024-12-06 10:58:15", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -44659,7 +44659,7 @@ "name": "RPA.Database", "doc": "Library for common encryption and hashing operations.
\nLibrary uses by default the\nFernet format\nfor encryption. More specifically, it uses AES in CBC mode with\na 128-bit key for encryption and HMAC with SHA256 for authentication.
\nAlternative encryption format for the library is\nAES256.
\nTo use the encryption features, generate a key with the command line\nutility rpa-crypto or with the keyword Generate Key. Store\nthe key in a secure place, such as Robocorp Vault, and load it within\nthe execution before calling encryption/decryption keywords.
\nExample usage with Robocorp Vault
\nCreate an encryption key with the CLI utility:
\n\n> rpa-crypto key\nrGx1edA07yz7uD08ChiPSunn8vaauRxw0pAbsal9zjM=\n
\nStore the key in Robocorp Vault, in this case with the name EncryptionKey.
\nLoad the key from the vault before encryption operations:
\n\nUse encryption key from vault EncryptionKey\n${encrypted}= Encrypt file orders.xlsx\nAdd work item file ${encrypted} name=Orders\n\nIn another task, this same key can be used to decrypt the file:
\n\nUse encryption key from vault EncryptionKey\n${encrypted}= Get work item file Orders\n${orders}= Decrypt file ${encrypted}\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:43", + "generated": "2024-12-06 10:58:15", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -45319,7 +45319,7 @@ "name": "RPA.Desktop", "doc": "Database is a library for handling different database operations.
\nAll database operations are supported. Keywords Query and Get Rows\nreturn values by default in RPA.Table format.
\nLibrary is compatible with any Database API Specification 2.0 module.
\nWorkaround for inserting large JSON data for Call Stored Procedure
\nWorkaround is to use instead Query keyword. At the moment there is\nno known fix for the Call Stored Procedure keyword as it fails if\nJSON string is more than 8000 characters long.
\nRobot Framework
\n\n${data}= Load JSON from file random_data.json\n${json}= Convert JSON to String ${data}\n# Single quotes around ${json} string are necessary\nQuery exec InsertJsonDataToSampleTable '${json}'\n\nReferences:
\n\n
\n- Database API Specification 2.0 - http://www.python.org/dev/peps/pep-0249/
\n- Lists of DB API 2.0 - http://wiki.python.org/moin/DatabaseInterfaces
\n- Python Database Programming - http://wiki.python.org/moin/DatabaseProgramming/
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Database\n\n*** Tasks ***\nGet Orders From Database\n Connect To Database pymysql tester user password 127.0.0.1\n @{orders} Query Select * FROM incoming_orders\n FOR ${order} IN @{orders}\n Handle Order ${order}\n END\n\nPython
\n\nfrom RPA.Database import Database\nfrom RPA.Robocorp.Vault import FileSecrets\n\nfilesecrets = FileSecrets("secrets.json")\nsecrets = filesecrets.get_secret("databasesecrets")\n\ndb = Database()\ndb.connect_to_database('pymysql',\n secrets["DATABASE"],\n secrets["USERNAME"],\n secrets["PASSWORD"],\n '127.0.0.1'\n )\norders = db.query("SELECT * FROM incoming_orders")\nfor order in orders:\n print(order)\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:43", + "generated": "2024-12-06 10:58:15", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -46529,7 +46529,7 @@ "name": "RPA.Desktop.Clipboard", "doc": "Desktop is a cross-platform library for navigating and interacting with\ndesktop environments. It can be used to automate applications through\nthe same interfaces that are available to human users.
\nThe library includes the following features:
\n\n
\n- Mouse and keyboard input emulation
\n- Starting and stopping applications
\n- Finding elements through image template matching
\n- Scraping text from given regions
\n- Taking screenshots
\n- Clipboard management
\n\n\nWarning
\nWindows element selectors are not currently supported, and require the use of RPA.Desktop.Windows
\nInstallation
\nThe basic features such as mouse and keyboard input and application\ncontrol work with a default rpaframework install.
\nAdvanced computer-vision features such as image template matching and\nOCR require an additional library called rpaframework-recognition.
\nThe dependency should be added separately by specifing it in your conda.yaml\nas rpaframework-recognition==5.0.1 for example. If installing recognition\nthrough pip instead of conda, the OCR feature also requires tesseract.
\nLocating elements
\nTo automate actions on the desktop, a robot needs to interact with various\ngraphical elements such as buttons or input fields. The locations of these\nelements can be found using a feature called locators.
\nA locator describes the properties or features of an element. This information\ncan be later used to locate similar elements even when window positions or\nstates change.
\nThe currently supported locator types are:
\n\n
\n\n \n\n\n \n \n \n\n\n Name \nArguments \nDescription \n\n alias \nname (str) \nA custom named locator from the locator database, the default. \n\n image \npath (str) \nImage of an element that is matched to current screen content. \n\n point \nx (int), y (int) \nPixel coordinates as absolute position. \n\n offset \nx (int), y (int) \nPixel coordinates relative to current mouse position. \n\n size \nwidth (int), height (int) \nRegion of fixed size, around point or screen top-left \n\n region \nleft (int), top (int), right (int), bottom (int) \nBounding coordinates for a rectangular region. \n\n\n ocr \ntext (str), confidence (float, optional) \nText to find from the current screen. \nA locator is defined by its type and arguments, divided by a colon.\nSome example usages are shown below. Note that the prefix for alias can\nbe omitted as its the default type.
\n\nClick point:50,100\nClick region:20,20,100,30\n\nMove mouse image:%{ROBOT_ROOT}/logo.png\nMove mouse offset:200,0\nClick\n\nClick alias:SpareBin.Login\nClick SpareBin.Login\n\nClick ocr:"Create New Account"\n\nYou can also pass internal region objects as locators:
\n\n${region}= Find Element ocr:"Customer name"\nClick ${region}\n\nLocator chaining
\nOften it is not enough to have one locator, but instead an element\nis defined through a relationship of various locators. For this use\ncase the library supports a special syntax, which we will call\nlocator chaining.
\nAn example of chaining:
\n\n# Read text from area on the right side of logo\nRead text image:logo.png + offset:600,0 + size:400,200\n\nThe supported operators are:
\n\n
\n\n \n\n\n \n \n\n\n Operator \nDescription \n\n then, + \nBase locator relative to the previous one \n\n and, &&, & \nBoth locators should be found \n\n or, ||, | \nEither of the locators should be found \n\n\n not, ! \nThe locator should not be found \nFurther examples:
\n\n# Click below either label\nClick (image:name.png or image:email.png) then offset:0,300\n\n# Wait until dialog disappears\nWait for element not image:cookie.png\n\nNamed locators
\nThe library supports storing locators in a database, which contains\nall of the required fields and various bits of metadata. This enables\nhaving one source of truth, which can be updated if a website's or applications's\nUI changes. Robot Framework scripts can then only contain a reference\nto a stored locator by name.
\nThe main way to create named locators is with VSCode.
\nRead more on identifying elements and crafting locators:
\n\n
\n- Desktop automation and RPA
\n- How to find user interface elements using locators and keyboard shortcuts in Windows applications
\nKeyboard and mouse
\nKeyboard keywords can emulate typing text, but also pressing various function keys.\nThe name of a key is case-insensitive and spaces will be converted to underscores,\ni.e. the key Page Down and page_down are equivalent.
\nThe following function keys are supported:
\n\n
\n\n \n\n\n \n \n\n\n Key \nDescription \n\n shift \nA generic Shift key. This is a modifier. \n\n shift_l \nThe left Shift key. This is a modifier. \n\n shift_r \nThe right Shift key. This is a modifier. \n\n ctrl \nA generic Ctrl key. This is a modifier. \n\n ctrl_l \nhe left Ctrl key. This is a modifier. \n\n ctrl_r \nThe right Ctrl key. This is a modifier. \n\n alt \nA generic Alt key. This is a modifier. \n\n alt_l \nThe left Alt key. This is a modifier. \n\n alt_r \nThe right Alt key. This is a modifier. \n\n alt_gr \nThe AltGr key. This is a modifier. \n\n cmd \nA generic command button (Windows / Command / Super key). This may be a modifier. \n\n cmd_l \nThe left command button (Windows / Command / Super key). This may be a modifier. \n\n cmd_r \nThe right command button (Windows / Command / Super key). This may be a modifier. \n\n up \nAn up arrow key. \n\n down \nA down arrow key. \n\n left \nA left arrow key. \n\n right \nA right arrow key. \n\n enter \nThe Enter or Return key. \n\n space \nThe Space key. \n\n tab \nThe Tab key. \n\n backspace \nThe Backspace key. \n\n delete \nThe Delete key. \n\n esc \nThe Esc key. \n\n home \nThe Home key. \n\n end \nThe End key. \n\n page_down \nThe Page Down key. \n\n page_up \nThe Page Up key. \n\n caps_lock \nThe Caps Lock key. \n\n f1 to f20 \nThe function keys. \n\n insert \nThe Insert key. This may be undefined for some platforms. \n\n menu \nThe Menu key. This may be undefined for some platforms. \n\n num_lock \nThe Num Lock key. This may be undefined for some platforms. \n\n pause \nThe Pause / Break key. This may be undefined for some platforms. \n\n print_screen \nThe Print Screen key. This may be undefined for some platforms. \n\n\n scroll_lock \nThe Scroll Lock key. This may be undefined for some platforms. \nWhen controlling the mouse, there are different types of actions that can be\ndone. Same formatting rules as function keys apply. They are as follows:
\n\n
\n\n \n\n\n \n \n\n\n Action \nDescription \n\n click \nClick with left mouse button \n\n left_click \nClick with left mouse button \n\n double_click \nDouble click with left mouse button \n\n triple_click \nTriple click with left mouse button \n\n\n right_click \nClick with right mouse button \nThe supported mouse button types are left, right, and middle.
\nExamples
\nBoth Robot Framework and Python examples follow.
\nThe library must be imported first.
\n\n*** Settings ***\nLibrary RPA.Desktop\n\n\nfrom RPA.Desktop import Desktop\ndesktop = Desktop()\n\nThe library can open applications and interact with them through\nkeyboard and mouse events.
\n\n*** Keywords ***\nWrite entry in accounting\n [Arguments] ${entry}\n Open application erp_client.exe\n Click image:%{ROBOT_ROOT}/images/create.png\n Type text ${entry}\n Press keys ctrl s\n Press keys enter\n\n\ndef write_entry_in_accounting(entry):\n desktop.open_application("erp_client.exe")\n desktop.click(f"image:{ROBOT_ROOT}/images/create.png")\n desktop.type_text(entry)\n desktop.press_keys("ctrl", "s")\n desktop.press_keys("enter")\n\nTargeting can be currently done using coordinates (absolute or relative),\nbut using template matching is preferred.
\n\n*** Keywords ***\nWrite to field\n [Arguments] ${text}\n Move mouse image:input_label.png\n Move mouse offset:200,0\n Click\n Type text ${text}\n Press keys enter\n\n\ndef write_to_field(text):\n desktop.move_mouse("image:input_label.png")\n desktop.move_mouse("offset:200,0")\n desktop.click()\n desktop.type_text(text)\n desktop.press_keys("enter")\n\nElements can be found by text too.
\n\n*** Keywords ***\nClick New\n Click ocr:New\n\n\ndef click_new():\n desktop.click('ocr:"New"')\n\nIt is recommended to wait for the elements to be visible before\ntrying any interaction. You can also pass region objects as locators.
\n\n*** Keywords ***\nClick New\n ${region}= Wait For element ocr:New\n Click ${region}\n\n\ndef click_new():\n region = desktop.wait_for_element("ocr:New")\n desktop.click(region)\n\nAnother way to find elements by offsetting from an anchor:
\n\n*** Keywords ***\nType Notes\n [Arguments] ${text}\n Click With Offset ocr:Notes 500 0\n Type Text ${text}\n\n\ndef type_notes(text):\n desktop.click_with_offset("ocr:Notes", 500, 0)\n desktop.type_text(text)\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:43", + "generated": "2024-12-06 10:58:15", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -46587,7 +46587,7 @@ "name": "RPA.Desktop.OperatingSystem", "doc": "DEPRECATED!! Use library RPA.Desktop's clipboard functionality instead.
\nClipboard is a library for managing clipboard - copy text to,\npaste text from, and clear clipboard contents.
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Desktop.Clipboard\n\n*** Tasks ***\nClipping\n Copy To Clipboard Text from Robot to clipboard\n ${var}= Paste From Clipboard\n Clear Clipboard\n\nPython
\n\nfrom RPA.Desktop.Clipboard import Clipboard\n\nclip = Clipboard()\nclip.copy_to_clipboard('Text from Python to clipboard')\ntext = clip.paste_from_clipboard()\nprint(f"clipboard had text: '{text}'")\nclip.clear_clipboard()\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:43", + "generated": "2024-12-06 10:58:15", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -46851,7 +46851,7 @@ "name": "RPA.Desktop.Windows", "doc": "OperatingSystem is a cross-platform library for managing\ncomputer properties and actions.
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Desktop.OperatingSystem\n\n*** Tasks ***\nGet computer information\n ${boot_time}= Get Boot Time as_datetime=${TRUE}\n ${machine}= Get Machine Name\n ${username}= Get Username\n &{memory}= Get Memory Stats\n Log Many ${memory}\n\nPython
\n\nfrom RPA.Desktop.OperatingSystem import OperatingSystem\n\ndef get_computer_information():\n ops = OperatingSystem()\n print(f"Boot time : { ops.get_boot_time(as_datetime=True) }"\n f"Machine name : { ops.get_machine_name() }"\n f"Username : { ops.get_username() }"\n f"Memory : { ops.get_memory_stats() }")\n\nif __name__ == "__main__":\n get_computer_information()\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:44", + "generated": "2024-12-06 10:58:16", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -49262,7 +49262,7 @@ "name": "RPA.DocumentAI", "doc": "Windows is a library for managing the Windows operating system.
\nDEPRECATION WARNING! USE RPA.Windows library instead.
\nFor Windows desktop automation Robocorp recommends the RPA.Windows library.
\nNo further updates will be released for this library and new functionality will continue\nto be developed in RPA.Windows library.
\nRunning Windows applications
\nWindows applications can be started in several ways. The library supports\nthe following keywords:
\n\n
\n- Open Application (dispatch Office applications)
\n- Open File (open the file as process which opens the associated application)
\n- Open Executable (uses pywinauto start)
\n- Open Using Run Dialog (uses Windows run dialog)
\n- Open From Search (uses Windows search dialog)
\nLocators
\nLocator is used to identify the element for interaction - usually for a mouse click.
\nLocators can investigated for application once it has been opened by calling\nthe keyword get_windows_elements which can store locator information into JSON file\nand screenshot of the element into an image file.
\nIdentifying locator
\nThe element needs to be identified by a unique method, for example, "Three" for button 3\nin the Calculator application. It can be given either as Three or name:Three.
\nPossible search criterias:
\n\n
\n- name
\n- class (class_name)
\n- type (control_type)
\n- id (automation_id)
\n- any if none was defined
\nThe current method of inspecting elements on Windows is inspect.exe which is part\nof Windows SDK.
\nKeyboard
\nThe keyword send_keys can be used to send keys to the active window. The keyword\ntype_keys sends keys to the active window element.
\nSpecial key codes are documented on pywinauto\ndocumentation page.
\nFAQ
\n\n
\n- I see error message AttributeError: module 'win32com.gen_py.00020813-0000-0000-C000-000000000046x0x1x9' has no attribute 'CLSIDToClassMap'
\n\n
\n- From PowerShell run this command: Remove-Item -path $env:LOCALAPPDATATempgen_py -recurse
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Desktop.Windows\nSuite Teardown Close all applications\n\n*** Tasks ***\nOpen Calculator using run dialog\n ${result}= Open using run dialog calc.exe Calculator\n ${result}= Get Window Elements\n Send Keys 5*2=\n ${result}= Get element partial name:Display is\n Log Many ${result}\n ${result}= Get element rich text id:CalculatorResults\n Should Be Equal As Strings ${result} Display is 10\n ${result}= Get element rectangle partial name:Display is\n ${result}= Is Element Visible CalculatorResults\n ${result}= Is Element Enabled partial name:Display is\n\nPython
\n\nfrom RPA.Desktop.Windows import Windows\n\nwin = Windows()\n\ndef open_calculator():\n win.open_from_search("calc.exe", "Calculator")\n elements = win.get_window_elements()\n\ndef make_calculations(expression):\n win.send_keys(expression)\n result = win.get_element_rich_text('id:CalculatorResults')\n return int(result.strip('Display is '))\n\nif __name__ == "__main__":\n open_calculator()\n exp = '5*2='\n result = make_calculations(exp)\n print(f"Calculation result of '{exp}' is '{result}'")\n win.close_all_applications()\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:44", + "generated": "2024-12-06 10:58:16", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -49577,7 +49577,7 @@ "name": "RPA.DocumentAI.Base64AI", "doc": "Wrapper library offering generic keywords for initializing, scanning and\nretrieving results as fields from documents (PDF, PNG etc.).
\nLibrary requires at the minimum rpaframework version 19.0.0.
\nThis is a helper facade for the following libraries:
\n\n
\n- RPA.Cloud.Google (requires rpaframework-google)
\n- RPA.DocumentAI.Base64AI
\n- RPA.DocumentAI.Nanonets
\nWhere the following steps are required:
\n\n
\n- Engine initialization: Init Engine
\n- Document scan: Predict
\n- Result retrieval: Get Result
\nSo no matter the engine you're using, the very same keywords can be used, as only\nthe passed parameters will differ (please check the docs on each library for\nparticularities). Once initialized, you can jump between the engines with\nSwitch Engine. Before scanning documents, you must configure the service first,\nwith a model to scan the files with and an API key for authorizing the access.
\nSee Portal example: https://robocorp.com/portal/robot/robocorp/example-document-ai
\nExample: Robot Framework
\n\n*** Settings ***\nLibrary RPA.DocumentAI\n\n*** Tasks ***\nScan Documents\n Init Engine base64ai vault=document_ai:base64ai\n Init Engine nanonets vault=document_ai:nanonets\n\n Switch Engine base64ai\n Predict invoice.png\n ${data} = Get Result\n Log List ${data}\n\n Switch Engine nanonets\n Predict invoice.png model=858e4b37-6679-4552-9481-d5497dfc0b4a\n ${data} = Get Result\n Log List ${data}\n\nExample: Python
\n\nfrom RPA.DocumentAI import DocumentAI, EngineName\n\nlib_docai = DocumentAI()\nlib_docai.init_engine(\n EngineName.GOOGLE, vault="document_ai:serviceaccount", region="eu"\n)\nlib_docai.predict(\n "invoice.pdf", model="df1d166771005ff4",\n project_id="complete-agency-347912", region="eu"\n)\nprint(lib_docai.get_result())\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:44", + "generated": "2024-12-06 10:58:16", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -50090,7 +50090,7 @@ "name": "RPA.DocumentAI.DocumentAI", "doc": "Library to support Base64.ai service for intelligent\ndocument processing (IDP).
\nLibrary requires at the minimum rpaframework version 19.0.0.
\nService supports identifying fields in the documents, which can be given to the\nservice in multiple different file formats and via URL.
\nRobot Framework example usage
\n\n*** Settings ***\nLibrary RPA.DocumentAI.Base64AI\nLibrary RPA.Robocorp.Vault\n\n*** Tasks ***\nIdentify document\n ${secrets}= Get Secret base64ai-auth\n Set Authorization ${secrets}[email-address] ${secrets}[apikey]\n ${results}= Scan Document File\n ... ${CURDIR}${/}invoice.pdf\n ... model_types=finance/check/usa,finance/invoice/usa\n # Scan response contains list of detected models in the document\n FOR ${result} IN @{results}\n Log To Console Model: ${result}[model]\n Log To Console Field keys: ${{','.join($result['fields'].keys())}}\n Log To Console Fields: ${result}[fields]\n Log To Console Text (OCR): ${result}[ocr]\n END\n\nPython example usage
\n\nfrom RPA.DocumentAI.Base64AI import Base64AI\nfrom RPA.Robocorp.Vault import Vault\n\nsecrets = Vault().get_secret("base64ai-auth")\nbaselib = Base64AI()\nbaselib.set_authorization(secrets["email-address"], secrets["apikey"])\nresult = baselib.scan_document_file(\n "invoice.pdf",\n model_types="finance/invoice,finance/check/usa",\n)\nfor r in result:\n print(f"Model: {r['model']}")\n for key, props in r["fields"].items():\n print(f"FIELD {key}: {props['value']}")\n print(f"Text (OCR): {r['ocr']}")\n\nPortal example: https://github.com/robocorp/example-idp-base64
\n\n\n", "version": "", - "generated": "2024-12-06 10:56:44", + "generated": "2024-12-06 10:58:16", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -50405,7 +50405,7 @@ "name": "RPA.DocumentAI.Nanonets", "doc": "Wrapper library offering generic keywords for initializing, scanning and\nretrieving results as fields from documents (PDF, PNG etc.).
\nLibrary requires at the minimum rpaframework version 19.0.0.
\nThis is a helper facade for the following libraries:
\n\n
\n- RPA.Cloud.Google (requires rpaframework-google)
\n- RPA.DocumentAI.Base64AI
\n- RPA.DocumentAI.Nanonets
\nWhere the following steps are required:
\n\n
\n- Engine initialization: Init Engine
\n- Document scan: Predict
\n- Result retrieval: Get Result
\nSo no matter the engine you're using, the very same keywords can be used, as only\nthe passed parameters will differ (please check the docs on each library for\nparticularities). Once initialized, you can jump between the engines with\nSwitch Engine. Before scanning documents, you must configure the service first,\nwith a model to scan the files with and an API key for authorizing the access.
\nSee Portal example: https://robocorp.com/portal/robot/robocorp/example-document-ai
\nExample: Robot Framework
\n\n*** Settings ***\nLibrary RPA.DocumentAI\n\n*** Tasks ***\nScan Documents\n Init Engine base64ai vault=document_ai:base64ai\n Init Engine nanonets vault=document_ai:nanonets\n\n Switch Engine base64ai\n Predict invoice.png\n ${data} = Get Result\n Log List ${data}\n\n Switch Engine nanonets\n Predict invoice.png model=858e4b37-6679-4552-9481-d5497dfc0b4a\n ${data} = Get Result\n Log List ${data}\n\nExample: Python
\n\nfrom RPA.DocumentAI import DocumentAI, EngineName\n\nlib_docai = DocumentAI()\nlib_docai.init_engine(\n EngineName.GOOGLE, vault="document_ai:serviceaccount", region="eu"\n)\nlib_docai.predict(\n "invoice.pdf", model="df1d166771005ff4",\n project_id="complete-agency-347912", region="eu"\n)\nprint(lib_docai.get_result())\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:45", + "generated": "2024-12-06 10:58:16", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -50703,7 +50703,7 @@ "name": "RPA.Email.Exchange", "doc": "Library to support Nanonets service for intelligent document processing (IDP).
\nLibrary requires at the minimum rpaframework version 19.0.0.
\nService supports identifying fields in the documents, which can be given to the\nservice in multiple different file formats and via URL.
\nRobot Framework example usage
\n\n*** Settings ***\nLibrary RPA.DocumentAI.Nanonets\nLibrary RPA.Robocorp.Vault\n\n*** Tasks ***\nIdentify document\n ${secrets}= Get Secret nanonets-auth\n Set Authorization ${secrets}[apikey]\n ${result}= Predict File\n ... ${CURDIR}${/}files${/}eckero.jpg\n ... ${secrets}[receipts-model-id]\n ${fields}= Get Fields From Prediction Result ${result}\n FOR ${field} IN @{fields}\n Log To Console Label:${field}[label] Text:${field}[ocr_text]\n END\n ${tables}= Get Tables From Prediction Result ${result}\n FOR ${table} IN @{tables}\n FOR ${rows} IN ${table}[rows]\n FOR ${row} IN @{rows}\n ${cells}= Evaluate [cell['text'] for cell in $row]\n Log To Console ROW:${{" | ".join($cells)}}\n END\n END\n END\n\nPython example usage
\n\nfrom RPA.DocumentAI.Nanonets import Nanonets\nfrom RPA.Robocorp.Vault import Vault\n\nsecrets = Vault().get_secret("nanonets-auth")\nnanolib = Nanonets()\nnanolib.set_authorization(secrets["apikey"])\nresult = nanolib.predict_file(file_to_scan, secrets["receipts-model-id"])\nfields = nanolib.get_fields_from_prediction_result(result)\nfor field in fields:\n print(f"Label: {field['label']} Text: {field['ocr_text']}")\ntables = nanolib.get_tables_from_prediction_result(result)\nfor table in tables:\n rpatable = Tables().create_table(table["rows"])\n for row in table["rows"]:\n cells = [cell["text"] for cell in row]\n print(f"ROW: {' | '.join(cells)}")\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:45", + "generated": "2024-12-06 10:58:17", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -52169,7 +52169,7 @@ "name": "RPA.Email.ImapSmtp", "doc": "Exchange is a library for sending, reading, and deleting emails.\nExchange is interfacing with Exchange Web Services (EWS).
\nFor more information about server settings, see\nthis Microsoft support article.
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Email.Exchange\n... vault_name=email_oauth_microsoft vault_token_key=token\n... tenant=ztzvn.onmicrosoft.com # your custom tenant here\nTask Setup Ensure Auth\n\n*** Variables ***\n${ACCOUNT} ACCOUNT_NAME\n${RECIPIENT_ADDRESS} RECIPIENT\n${IMAGES} myimage.png\n${ATTACHMENTS} C:${/}files${/}mydocument.pdf\n\n*** Keywords ***\nEnsure Auth\n ${secrets} = Get Secret email_oauth_microsoft\n RPA.Email.Exchange.Authorize ${ACCOUNT}\n ... is_oauth=${True} # use the OAuth2 auth code flow (required)\n ... client_id=${secrets}[client_id] # app ID\n ... client_secret=${secrets}[client_secret] # app password\n ... token=${secrets}[token] # token dict (access, refresh, scope etc.)\n\n*** Tasks ***\nTask of sending email\n Send Message recipients=${RECIPIENT_ADDRESS}\n ... subject=Exchange Message from RPA Robot\n ... body=<p>Exchange RPA Robot message body<br><img src='myimage.png'/></p>\n ... save=${TRUE}\n ... html=${TRUE}\n ... images=${IMAGES}\n ... cc=EMAIL_ADDRESS\n ... bcc=EMAIL_ADDRESS\n ... attachments=${ATTACHMENTS}\n\nTask of listing messages\n # Attachments are saved specifically with a keyword Save Attachments\n ${messages}= List Messages\n FOR ${msg} IN @{messages}\n Log Many ${msg}\n ${attachments}= Run Keyword If "${msg}[subject]"=="about my orders"\n ... Save Attachments\n ... ${msg}\n ... save_dir=${CURDIR}${/}savedir\n END\n # Using save_dir all attachments in listed messages are saved\n ${messages}= List Messages\n ... INBOX/Problems/sub1\n ... criterion=subject:'about my orders'\n ... save_dir=${CURDIR}${/}savedir2\n FOR ${msg} IN @{messages}\n Log Many ${msg}\n END\n\nTask of moving messages\n Move Messages criterion=subject:'about my orders'\n ... source=INBOX/Processed Purchase Invoices/sub2\n ... target=INBOX/Problems/sub1\n\nPython
\n\nfrom RPA.Email.Exchange import Exchange\nfrom RPA.Robocorp.Vault import Vault\n\nvault_name = "email_oauth_microsoft"\nsecrets = Vault().get_secret(vault_name)\nex_account = "ACCOUNT_NAME"\n\nmail = Exchange(\n vault_name=vault_name,\n vault_token_key="token",\n tenant="ztzvn.onmicrosoft.com"\n)\nmail.authorize(\n username=ex_account,\n is_oauth=True,\n client_id=secrets["client_id"],\n client_secret=secrets["client_secret"],\n token=secrets["token"]\n)\nmail.send_message(\n recipients="RECIPIENT",\n subject="Message from RPA Python",\n body="RPA Python message body",\n)\n\nOAuth2
\nThe OAuth2 flow is the only way of authorizing at the moment as Microsoft disabled\nentirely the usage of passwords, even App Passwords. And since you have to work\nwith tokens now and because this library has the capability to automatically\nrefresh an expired token, please don't forget to initialize the library with the\nfollowing parameters: vault_name, vault_token_key and tenant.
\nLearn more on how to use the OAuth2 flow in this Portal robot\nexample-oauth-email.
\nAbout criterion parameter
\nFollowing table shows possible criterion keys that can be used to filter emails.\nThere apply to all keywords which have criterion parameter.
\n\n
\n\n \n\n\n \n \n\n\n Key \nEffective search \n\n subject \nsubject to match \n\n subject_contains \nsubject to contain \n\n body \nbody to match \n\n body_contains \nbody to contain \n\n sender \nsender (from) to match \n\n sender_contains \nsender (from) to contain \n\n before \nreceived time before this time \n\n after \nreceived time after this time \n\n between \nreceived time between start and end \n\n category \ncategories to match \n\n category_contains \ncategories to contain \n\n\n importance \nimportance to match \nKeys before, after and between at the moment support two\ndifferent timeformats either %d-%m-%Y %H:%M or %d-%m-%Y. These\nkeys also support special string NOW which can be used especially\ntogether with keyword Wait for message criterion=after:NOW.
\nWhen giving time which includes hours and minutes then the whole\ntime string needs to be enclosed into single quotes.
\n\nbefore:25-02-2022\nafter:NOW\nbetween:'31-12-2021 23:50 and 01-01-2022 00:10'\n\nDifferent criterion keys can be combined.
\n\nsubject_contains:'new year' between:'31-12-2021 23:50 and 01-01-2022 00:10'\n\nPlease note that all values in the criterion that contain spaces need\nto be enclosed within single quotes.
\nIn the following example the email subject is going to matched\nonly against new not new year.
\n\nsubject_contains:new year\n
\n\n\n", "version": "", - "generated": "2024-12-06 10:56:46", + "generated": "2024-12-06 10:58:17", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -54358,7 +54358,7 @@ "name": "RPA.Excel.Application", "doc": "ImapSmtp is a library for sending, reading, and deleting emails.\nImapSmtp is interfacing with SMTP and IMAP protocols.
\n*About criteria argument*
\nVarious keywords like List Messages and Move Messages have keyword\nargument called criterion which can be used to filter emails according\nto given criteria.
\nSyntax needs to according to specification and more information about that\ncan be read from https://robocorp.com/docs/development-guide/email/sending-emails-with-gmail-smtp#listing-email-messages-by-criteria
\nTroubleshooting
\n\n
\n- \n
\n
\n- Authentication error with GMail - "Application-specific password required"
\n- \n
\n- \n
\n
\n- More secure apps (XOAUTH2 protocol) - Use the OAuth2 flow as in this Portal robot:
\n- \n
\nMake sure to specify a provider (and optionally a tenant) when importing\nthe library and planning to use this flow.
\nExamples
\nRobot Framework
\nIt is highly recommended to secure your passwords and take care\nthat they are not stored in version control by mistake.\nSee RPA.Robocorp.Vault to see how to store secrets in\nRobocorp Vault.
\nWhen sending HTML content with IMG tags, the src filenames must match\nthe base image name given with the images parameter.
\n\n*** Settings ***\nLibrary RPA.Email.ImapSmtp smtp_server=smtp.gmail.com smtp_port=587\nTask Setup Authorize account=${GMAIL_ACCOUNT} password=${GMAIL_PASSWORD}\n\n*** Variables ***\n${GMAIL_ACCOUNT} ACCOUNT_NAME\n${GMAIL_PASSWORD} APP_PASSWORD\n${RECIPIENT_ADDRESS} RECIPIENT\n${BODY_IMG1} ${IMAGEDIR}${/}approved.png\n${BODY_IMG2} ${IMAGEDIR}${/}invoice.png\n${EMAIL_BODY} <h1>Heading</h1><p>Status: <img src='approved.png' alt='approved image'/></p>\n... <p>INVOICE: <img src='invoice.png' alt='invoice image'/></p>\n\n*** Tasks ***\nSending email\n Send Message sender=${GMAIL_ACCOUNT}\n ... recipients=${RECIPIENT_ADDRESS}\n ... subject=Message from RPA Robot\n ... body=RPA Robot message body\n\nSending HTML Email With Image\n [Documentation] Sending email with HTML content and attachment\n Send Message\n ... sender=${GMAIL_ACCOUNT}\n ... recipients=${RECIPIENT_ADDRESS}\n ... subject=HTML email with body images (2) plus one attachment\n ... body=${EMAIL_BODY}\n ... html=${TRUE}\n ... images=${BODY_IMG1}, ${BODY_IMG2}\n ... attachments=example.png\n\nPython
\n\nfrom RPA.Email.ImapSmtp import ImapSmtp\n\ngmail_account = "ACCOUNT_NAME"\ngmail_password = "APP_PASSWORD"\n\nmail = ImapSmtp(smtp_server="smtp.gmail.com", smtp_port=587)\nmail.authorize(account=gmail_account, password=gmail_password)\nmail.send_message(\n sender=gmail_account,\n recipients="RECIPIENT",\n subject="Message from RPA Python",\n body="RPA Python message body",\n)\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:46", + "generated": "2024-12-06 10:58:17", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -55675,7 +55675,7 @@ "name": "RPA.Excel.Files", "doc": "Excel.Application is a library for controlling the Excel application.
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Excel.Application\nTask Setup Open Application\nTask Teardown Quit Application\n\n*** Tasks ***\nManipulate Excel application\n Open Workbook workbook.xlsx\n Set Active Worksheet sheetname=new stuff\n Write To Cells row=1\n ... column=1\n ... value=my data\n Save Excel\n\nRun Excel Macro\n Open Workbook orders_with_macro.xlsm\n Run Macro Sheet1.CommandButton1_Click\n\nExport Workbook as PDF\n Open Workbook workbook.xlsx\n Export as PDF workbook.pdf\n\nPython
\n\nfrom RPA.Excel.Application import Application\n\napp = Application()\n\napp.open_application()\napp.open_workbook('workbook.xlsx')\napp.set_active_worksheet(sheetname='new stuff')\napp.write_to_cells(row=1, column=1, value='new data')\napp.save_excel()\napp.quit_application()\n\nCaveats
\nThis library works on a Windows operating system with UI enabled only, and you must\nensure that you open the app first with Open Application before running any\nother relevant keyword which requires to operate on an open app. The application is\nautomatically closed at the end of the task execution, so this can be changed by\nimporting the library with the autoexit=${False} setting.
\n\n*** Settings ***\nLibrary RPA.Excel|Outlook|Word.Application autoexit=${False}\n\nIf you're running the Process by Control Room through a custom self-hosted Worker\nservice, then please make sure that you enable an RDP session by ticking "Use\nDesktop Connection" under the Step configuration.
\nIf you still encounter issues with opening a document, please ensure that file can\nbe opened first manually and dismiss any alert potentially blocking the process.
\nCheck the documentation below for more info:
\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:47", + "generated": "2024-12-06 10:58:18", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -57607,7 +57607,7 @@ "name": "RPA.FTP", "doc": "The Excel.Files library can be used to read and write Excel\nfiles without the need to start the actual Excel application.
\nIt supports both legacy .xls files and modern .xlsx files.
\nNote: To run macros or load password protected worksheets,\nplease use the Excel application library.
\nExamples
\nRobot Framework
\nA common use-case is to load an existing Excel file as a table,\nwhich can be iterated over later in a Robot Framework keyword or task:
\n\n*** Settings ***\nLibrary RPA.Tables\nLibrary RPA.Excel.Files\n\n*** Keywords ***\nRead orders as table\n Open workbook ${ORDERS_FILE}\n ${worksheet}= Read worksheet header=${TRUE}\n ${orders}= Create table ${worksheet}\n [Return] ${orders}\n [Teardown] Close workbook\n\nProcessing all worksheets in the Excel file and checking row count:
\n\n*** Settings ***\nLibrary RPA.Excel.Files\n\n*** Variables ***\n${EXCEL_FILE} /path/to/excel.xlsx\n\n*** Tasks ***\nRows in the sheet\n [Setup] Open Workbook ${EXCEL_FILE}\n @{sheets}= List Worksheets\n FOR ${sheet} IN @{sheets}\n ${count}= Get row count in the sheet ${sheet}\n Log Worksheet '${sheet}' has ${count} rows\n END\n\n*** Keywords ***\nGet row count in the sheet\n [Arguments] ${SHEET_NAME}\n ${sheet}= Read Worksheet ${SHEET_NAME}\n ${rows}= Get Length ${sheet}\n [Return] ${rows}\n\nCreating a new Excel file with a dictionary:
\n\n*** Tasks ***\nCreating new Excel\n Create Workbook my_new_excel.xlsx\n FOR ${index} IN RANGE 20\n &{row}= Create Dictionary\n ... Row No ${index}\n ... Amount ${index * 25}\n Append Rows to Worksheet ${row} header=${TRUE}\n END\n Save Workbook\n\nCreating a new Excel file with a list:
\n\n*** Variables ***\n@{heading} Row No Amount\n@{rows} ${heading}\n\n*** Tasks ***\nCreating new Excel\n Create Workbook my_new_excel.xlsx\n FOR ${index} IN RANGE 1 20\n @{row}= Create List ${index} ${index * 25}\n Append To List ${rows} ${row}\n END\n Append Rows to Worksheet ${rows}\n Save Workbook\n\nPython
\nThe library can also be imported directly into Python.
\n\nfrom RPA.Excel.Files import Files\n\ndef read_excel_worksheet(path, worksheet):\n lib = Files()\n lib.open_workbook(path)\n try:\n return lib.read_worksheet(worksheet)\n finally:\n lib.close_workbook()\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:47", + "generated": "2024-12-06 10:58:18", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -58210,7 +58210,7 @@ "name": "RPA.FileSystem", "doc": "FTP library can be used to access an FTP server,\nand interact with files.
\nThe library is based on Python's built-in ftplib.
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.FTP\n\n*** Variables ***\n${HOST} 127.0.0.1\n${PORT} 27345\n${USER} user\n${PASS} 12345\n\n*** Tasks ***\nList files on the server directory\n Connect ${HOST} ${PORT} ${USER} ${PASS}\n @{files} List Files\n FOR ${file} IN @{files}\n Log ${file}\n END\n\nPython
\n\nfrom RPA.FTP import FTP\n\nlibrary = FTP()\nlibrary.connect('127.0.0.1', 27345, 'user', '12345')\nfiles = library.list_files()\nfor f in files:\n print(f)\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:47", + "generated": "2024-12-06 10:58:19", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -59868,7 +59868,7 @@ "name": "RPA.HTTP", "doc": "The FileSystem library can be used to interact with files and directories\non the local computer. It can inspect and list files, remove and create them,\nread contents from files, and write data out.
\nIt shadows the built-in OperatingSystem library but contains keywords\nwhich are more RPA-oriented.
\nExamples
\nRobot Framework
\nThe library allows, for instance, iterating over files and inspecting them.
\n\n*** Settings ***\nLibrary RPA.FileSystem\n\n*** Keywords ***\nDelete large files\n ${files}= List files in directory archive/orders/\n FOR ${file} IN @{FILES}\n Run keyword if ${file.size} > 10**8 Remove file ${file}\n END\n\nRead process output\n Start external program\n Wait until modified process.log\n ${output}= Read file process.log\n [Return] ${output}\n\nPython
\nThe library can also be used inside Python.
\n\nfrom RPA.FileSystem import FileSystem\n\ndef move_to_archive():\n lib = FileSystem()\n\n matches = lib.find_files("**/*.xlsx")\n if matches:\n lib.create_directory("archive")\n lib.move_files(matches, "archive")\n\n\n\n", "version": "0.9.7", - "generated": "2024-12-06 10:56:47", + "generated": "2024-12-06 10:58:19", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -60039,10 +60039,10 @@ "name": "retry_method_list", "types": [], "typedocs": {}, - "defaultValue": "['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']", + "defaultValue": "['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']", "kind": "POSITIONAL_OR_NAMED", "required": false, - "repr": "retry_method_list=['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']" + "repr": "retry_method_list=['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']" } ], "doc": "The RPA.HTTP library extends functionality of the RequestsLibrary.\nSee that documentation for several examples of how to issue GET\nrequests and utilize the returned result objects.
\nThis extension provides helper keywords to get an HTTP resource on a\nsession. The HTTP Get and Download keywords will initiate a\nsession if one does not exist for the provided URL, or use an existing\nsession. When using these keywords, you do not need to manage\nsessions with Create Session. Session management is still\nrequired if you use the underlying session keywords, e.g.,\n* On Session.
\n\n\n", @@ -60175,10 +60175,10 @@ "name": "retry_method_list", "types": [], "typedocs": {}, - "defaultValue": "['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']", + "defaultValue": "['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']", "kind": "POSITIONAL_OR_NAMED", "required": false, - "repr": "retry_method_list=['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']" + "repr": "retry_method_list=['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']" } ], "doc": "Create Session: create a HTTP session to a server
\nurl Base url of the server
\nalias Robot Framework alias to identify the session
\nheaders Dictionary of default headers
\ncookies Dictionary of cookies
\nclient_certs ['client certificate', 'client key'] PEM files containing the client key and certificate
\ntimeout Connection timeout
\n\n
\n- proxies Dictionary mapping protocol or protocol and host to the URL of the proxy
\n- (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
\n- verify Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
\n- Defaults to False.
\n- debug Enable http verbosity option more information
\n- https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel
\n- max_retries Number of maximum retries each connection should attempt.
\n- By default it will retry 3 times in case of connection errors only.\nA 0 value will disable any kind of retries regardless of other retry settings.\nIn case the number of retries is reached a retry exception is raised.
\ndisable_warnings Disable requests warning useful when you have large number of testcases
\n\n
\n- backoff_factor Introduces a delay time between retries that is longer after each retry.
\n- eg. if backoff_factor is set to 0.1\nthe sleep between attemps will be: 0.0, 0.2, 0.4\nMore info here: https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html
\n- retry_method_list List of uppercased HTTP method verbs where retries are allowed.
\n- By default retries are allowed only on HTTP requests methods that are considered to be\nidempotent (multiple requests with the same parameters end with the same state).\neg. set to ['POST', 'GET'] to retry only those kind of requests.
\n- retry_status_list List of integer HTTP status codes that, if returned, a retry is attempted.
\n- eg. set to [502, 503] to retry requests if those status are returned.\nNote that max_retries must be greater than 0.
\n\n\n", @@ -60311,10 +60311,10 @@ "name": "retry_method_list", "types": [], "typedocs": {}, - "defaultValue": "['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']", + "defaultValue": "['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']", "kind": "POSITIONAL_OR_NAMED", "required": false, - "repr": "retry_method_list=['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']" + "repr": "retry_method_list=['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']" } ], "doc": "Create Session: create a HTTP session to a server
\nurl Base url of the server
\nalias Robot Framework alias to identify the session
\nheaders Dictionary of default headers
\ncookies Dictionary of cookies
\n\n
\n- auth A Custom Authentication object to be passed on to the requests library.
\n- http://docs.python-requests.org/en/master/user/advanced/#custom-authentication
\ntimeout Connection timeout
\n\n
\n- proxies Dictionary mapping protocol or protocol and host to the URL of the proxy
\n- (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
\n- verify Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
\n- Defaults to False.
\n- debug Enable http verbosity option more information
\n- https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel
\n- max_retries Number of maximum retries each connection should attempt.
\n- By default it will retry 3 times in case of connection errors only.\nA 0 value will disable any kind of retries regardless of other retry settings.\nIn case the number of retries is reached a retry exception is raised.
\ndisable_warnings Disable requests warning useful when you have large number of testcases
\n\n
\n- backoff_factor Introduces a delay time between retries that is longer after each retry.
\n- eg. if backoff_factor is set to 0.1\nthe sleep between attemps will be: 0.0, 0.2, 0.4\nMore info here: https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html
\n- retry_method_list List of uppercased HTTP method verbs where retries are allowed.
\n- By default retries are allowed only on HTTP requests methods that are considered to be\nidempotent (multiple requests with the same parameters end with the same state).\neg. set to ['POST', 'GET'] to retry only those kind of requests.
\n- retry_status_list List of integer HTTP status codes that, if returned, a retry is attempted.
\n- eg. set to [502, 503] to retry requests if those status are returned.\nNote that max_retries must be greater than 0.
\n\n\n", @@ -60447,10 +60447,10 @@ "name": "retry_method_list", "types": [], "typedocs": {}, - "defaultValue": "['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']", + "defaultValue": "['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']", "kind": "POSITIONAL_OR_NAMED", "required": false, - "repr": "retry_method_list=['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']" + "repr": "retry_method_list=['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']" } ], "doc": "Create Session: create a HTTP session to a server
\nurl Base url of the server
\nalias Robot Framework alias to identify the session
\nheaders Dictionary of default headers
\ncookies Dictionary of cookies
\nauth ['DOMAIN', 'username', 'password'] for NTLM Authentication
\ntimeout Connection timeout
\n\n
\n- proxies Dictionary mapping protocol or protocol and host to the URL of the proxy
\n- (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
\n- verify Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
\n- Defaults to False.
\n- debug Enable http verbosity option more information
\n- https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel
\n- max_retries Number of maximum retries each connection should attempt.
\n- By default it will retry 3 times in case of connection errors only.\nA 0 value will disable any kind of retries regardless of other retry settings.\nIn case the number of retries is reached a retry exception is raised.
\ndisable_warnings Disable requests warning useful when you have large number of testcases
\n\n
\n- backoff_factor Introduces a delay time between retries that is longer after each retry.
\n- eg. if backoff_factor is set to 0.1\nthe sleep between attemps will be: 0.0, 0.2, 0.4\nMore info here: https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html
\n- retry_method_list List of uppercased HTTP method verbs where retries are allowed.
\n- By default retries are allowed only on HTTP requests methods that are considered to be\nidempotent (multiple requests with the same parameters end with the same state).\neg. set to ['POST', 'GET'] to retry only those kind of requests.
\n- retry_status_list List of integer HTTP status codes that, if returned, a retry is attempted.
\n- eg. set to [502, 503] to retry requests if those status are returned.\nNote that max_retries must be greater than 0.
\n\n\n", @@ -60583,10 +60583,10 @@ "name": "retry_method_list", "types": [], "typedocs": {}, - "defaultValue": "['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']", + "defaultValue": "['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']", "kind": "POSITIONAL_OR_NAMED", "required": false, - "repr": "retry_method_list=['PUT', 'DELETE', 'HEAD', 'GET', 'TRACE', 'OPTIONS']" + "repr": "retry_method_list=['DELETE', 'HEAD', 'GET', 'OPTIONS', 'TRACE', 'PUT']" } ], "doc": "Create Session: create a HTTP session to a server
\nurl Base url of the server
\nalias Robot Framework alias to identify the session
\nheaders Dictionary of default headers
\ncookies Dictionary of cookies
\nauth ['DOMAIN', 'username', 'password'] for NTLM Authentication
\ntimeout Connection timeout
\n\n
\n- proxies Dictionary mapping protocol or protocol and host to the URL of the proxy
\n- (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
\n- verify Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
\n- Defaults to False.
\n- debug Enable http verbosity option more information
\n- https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel
\n- max_retries Number of maximum retries each connection should attempt.
\n- By default it will retry 3 times in case of connection errors only.\nA 0 value will disable any kind of retries regardless of other retry settings.\nIn case the number of retries is reached a retry exception is raised.
\ndisable_warnings Disable requests warning useful when you have large number of testcases
\n\n
\n- backoff_factor Introduces a delay time between retries that is longer after each retry.
\n- eg. if backoff_factor is set to 0.1\nthe sleep between attemps will be: 0.0, 0.2, 0.4\nMore info here: https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html
\n- retry_method_list List of uppercased HTTP method verbs where retries are allowed.
\n- By default retries are allowed only on HTTP requests methods that are considered to be\nidempotent (multiple requests with the same parameters end with the same state).\neg. set to ['POST', 'GET'] to retry only those kind of requests.
\n- retry_status_list List of integer HTTP status codes that, if returned, a retry is attempted.
\n- eg. set to [502, 503] to retry requests if those status are returned.\nNote that max_retries must be greater than 0.
\n\n\n", @@ -61965,7 +61965,7 @@ "name": "RPA.Hubspot", "doc": "Create Session: create a HTTP session to a server
\nalias Robot Framework alias to identify the session
\nurl Base url of the server
\nheaders Dictionary of default headers
\ncookies Dictionary of cookies
\nauth List of username & password for HTTP Basic Auth
\ntimeout Connection timeout
\n\n
\n- proxies Dictionary mapping protocol or protocol and host to the URL of the proxy
\n- (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
\nverify Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
\n\n
\n- debug Enable http verbosity option more information
\n- https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel
\n- max_retries Number of maximum retries each connection should attempt.
\n- By default it will retry 3 times in case of connection errors only.\nA 0 value will disable any kind of retries regardless of other retry settings.\nIn case the number of retries is reached a retry exception is raised.
\ndisable_warnings Disable requests warning useful when you have large number of testcases
\n\n
\n- backoff_factor Introduces a delay time between retries that is longer after each retry.
\n- eg. if backoff_factor is set to 0.1\nthe sleep between attemps will be: 0.0, 0.2, 0.4\nMore info here: https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html
\n- retry_method_list List of uppercased HTTP method verbs where retries are allowed.
\n- By default retries are allowed only on HTTP requests methods that are considered to be\nidempotent (multiple requests with the same parameters end with the same state).\neg. set to ['POST', 'GET'] to retry only those kind of requests.
\n- retry_status_list List of integer HTTP status codes that, if returned, a retry is attempted.
\n- eg. set to [502, 503] to retry requests if those status are returned.\nNote that max_retries must be greater than 0.
\n\n\n", "version": "", - "generated": "2024-12-06 10:56:48", + "generated": "2024-12-06 10:58:20", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -63141,7 +63141,7 @@ "name": "RPA.Images", "doc": "Hubspot is a library for accessing HubSpot using REST API. It\nextends hubspot-api-client.
\nCurrent features of this library focus on retrieving CRM object data\nfrom HubSpot via API. For additional information, see\nUnderstanding the CRM.
\n\n\nUsing Date Times When Searching
\nWhen using date times with the Hubspot API, you must provide\nthem as Unix-style epoch timestamps (with milliseconds), which can be obtained\nusing the DateTime library's Convert Date with the\nargument result_format=epoch. The resulting timestamp string\nwill be a float, but the API only accepts integers, so you must\nmultiply the resulting timestamp by 1,000 and then round it to\nthe nearest integar to include in API calls (i.e., the resulting\ninteger sent to the API must have 13 digits as of March 18, 2022).
\nRobot framework example usage:
\n\n*** Settings ***\nLibrary DateTime\nLibrary RPA.Hubspot\nTask Setup Authorize Hubspot\n\n*** Tasks ***\nSearch with date\n ${yesterday}= Get current date increment=-24h result_format=epoch\n ${yesterday_hs_ts}= Evaluate round(${yesterday} * 1000)\n ${deals}= Search for objects DEALS\n ... hs_lastmodifieddate GTE ${yesterday_hs_ts}\n\nPython example usage
\n\nfrom robot.libraries.DateTime import get_current_date, subtract_time_from_date\nfrom RPA.Hubspot import Hubspot\nfrom RPA.Robocorp.Vault import Vault\n\nsecrets = Vault().get_secret("hubspot")\n\nhs = Hubspot(hubspot_apikey=secrets["api_key"])\nyesterday = round(\n subtract_time_from_date(get_current_date(), "24h", result_format="epoch") * 1000\n)\ndeals = hs.search_for_objects("DEALS", "hs_lastmodifieddate", "GTE", yesterday)\nprint(deals)\n\n\n\nBatch Inputs
\nWhen retrieving information, the library automatically batches requests\nthat are provided as lists, see Get object keyword for an example,\nbut when wishing to create or update many objects, the library provides\na batching system.
\nIn order to start a batch, you must first call the Create new batch\nkeyword. This initializes a new batch to accept inputs. If a batch\nalready exists when you call this keyword, it will be lost and a new\nblank one will be started.
\nOnce the batch has been initialized, you can add inputs one at a time with\nAdd input to batch or many at a time with Extend batch with inputs.
\nIn order to finally send the batch to HubSpot, you must call\nExecute batch. The final keyword will return the created or updated\nobjects from HubSpot. New object IDs can be obtained from the id\nproperty, see the SimplePublicObject reference.
\nRobot framework example:
\n\n*** Settings ***\nLibrary RPA.Hubspot\nLibrary RPA.Robocorp.Vault\nTask Setup Authorize Hubspot\n\n*** Tasks ***\nCreate objects via batch\n Create new batch\n Add input to batch name=Nokia country=Finland\n Add input to batch name=Google country=USA\n ${new_companies}= Execute batch\n Log The first new company added has the new id ${{$new_companies[0].id}}\n\n*** Keywords ***\nAuthorize Hubspot\n ${secrets}= Get secret hubspot\n Auth with api key ${secrets}[API_KEY]\n\nPython example:
\nNOTE: When executing a batch input in Python, you can directly import the\nBatchInputFactory class to use to create your batch input before\nexecuting the batch.
\n\nfrom RPA.Hubspot import Hubspot, BatchInputFactory, BatchMode\nfrom RPA.Robocorp.Vault import RobocorpVault\n\n\nvault = RobocorpVault()\nsecrets = vault.get_secret("hubspot")\n\nhs = Hubspot(secrets["API_KEY"])\n\nbatch = BatchInputFactory(BatchMode.UPDATE, "company")\nbatch.extend_inputs(\n [\n {"name": "Nokia's New Name", "city": "Espoo"},\n {"name": "Alphabet", "city": "Mountain View"},\n ],\n ["1001", "1002"],\n)\nhs.batch_input = batch\nupdated_companies = hs.execute_batch()\nprint(\n "Companies have been updated:\\\\n" +\n "\\\\n".join([str(c) for c in updated_companies])\n)\n\n\n\nInformation Caching
\nThis library loads custom object schemas and pipelines into memory\nthe first time when keywords using them are called. These cached versions\nare recalled unless the use_cache is set to False, where available.
\n\n\nCustom Object Types
\nAll keywords that request a parameter of object_type can accept\ncustom object type names as long as they are properly configured in\nHubSpot. The system will lookup the custom object ID using the\nprovided name against the configured name or one of the configured\nlabels (e.g., "singular" and "plural" types of the name).
\n\n\nHubSpot Object Reference
\nThis section describes the types of objects returned by this Library\nand their associated attributes. These attributes can be accessed via\ndot-notation as described in the Attribute Access section below.
\n\n\nAttribute Access
\nKeywords return native Python Hubspot objects, rather than common Robot\nFramework types. These types have sets of defined attributes allowing\nfor dot-notation access of object properties. Properties (e.g.,\nthose configured in Hubspot settings for each object) will be\naccessible in a Python dictionary attached to the properties attribute\nof the returned object. See the Attribute Definitions section for\ndetails of that associated attributes for all types returned by this\nlibrary.
\nExample usage retrieving the city property of a Company object:
\nRobot framework example:
\n\n*** Settings ***\nLibrary RPA.Hubspot\nLibrary RPA.Robocorp.Vault\n\nTask Setup Authorize Hubspot\n\n*** Variables ***\n${ACCOUNT_NOKIA} 6818764598\n\n*** Tasks ***\nObtain city information from Hubspot\n ${account}= Get object COMPANY ${ACCOUNT_NOKIA}\n Log The city for account number ${ACCOUNT_NOKIA} is ${account.properties}[city]\n\n*** Keywords ***\nAuthorize Hubspot\n ${secrets}= Get secret hubspot\n Auth with api key ${secrets}[API_KEY]\n\nPython example:
\n\nfrom RPA.Hubspot import Hubspot\nfrom RPA.Robocorp.Vault import RobocorpVault\n\nvault = RobocorpVault()\nsecrets = vault.get_secret("hubspot")\n\nhs = Hubspot(secrets["API_KEY"])\nnokia_account_id = "6818764598"\naccount = hs.get_object("COMPANY", nokia_account_id)\nprint(f"The city for account number {nokia_account_id} is {account.properties['city']}")\n\n\n\nAttribute Definitions
\nThis library can return various types of objects, whose attributes\nare only accessible via dot-notation. The below reference describes\nthe attributes available on these objects.
\n\n\nSimplePublicObject
\nAn object in HubSpot. The object itself does not describe what type\nit represents.
\n\n
\n- id : str
\n- The HubSpot ID of the object.
\n- properties : Dict[str, str]
\n- A dictionary representing all returned properties associated\nto this object. Properties must be accessed as via standard\ndictionary subscription, e.g., properties["name"].
\n- created_at : datetime
\n- The timestamp when this object was created in HubSpot.
\n- updated_at : datetime
\n- The last modified timestamp for this object.
\n- archived : bool
\n- Whether this object is archived.
\n- archived_at : datetime
\n- The timestamp when this object was archived.
\n\n\nSimplePublicObjectWithAssociations
\nAn object in HubSpot including associations to other objects. The\nobject itself does not describe what type it represents.
\n\n
\n- id : str
\n- The HubSpot ID of the object.
\n- properties : Dict[str, str]
\n- A dictionary representing all returned properties associated\nto this object. Properties must be accessed as via standard\ndictionary subscription, e.g., properties["name"].
\n- created_at : datetime
\n- The timestamp when this object was created in HubSpot.
\n- updated_at : datetime
\n- The last modified timestamp for this object.
\n- archived : bool
\n- Whether this object is archived.
\n- archived_at : datetime
\n- The timestamp when this object was archived.
\n- associations : Dict[str, CollectionResponseAssociatedId]
\n- A dictionary whose key will be the requested association type, e.g.,\ncompanies and associated value will be a container object\nwith all the associations. See CollectionResponseAssociatedId.
\n\n\nAssociatedId
\nThe ID of an associated object, as well as the type of association.
\n\n
\n- id : str
\n- The ID of the associated HubSpot object.
\n- type : str
\n- The type of association, e.g., deals_to_companies.
\n\n\nCollectionResponseAssociatedId
\nA container object for a collection of AssociatedId objects returned\nby the API.
\n\n
\n- results : List[AssociatedId]
\n- The list of AssociatedId objects returned by the API.
\n- paging : Paging
\n- Used by this library to assist with retreiving multi-page\nAPI responses.
\n\n\nPipeline
\nA pipeline represents the steps objects travel through within HubSpot.
\n\n
\n- id : str
\n- The HubSpot ID for the pipeline. All accounts start with one\npipeline with the id default.
\n- label : str
\n- The human-readabel label for the pipeline.
\n- stages : List[PipelineStage]
\n- A list of PipelineStage objects in the order the object would\nfollow through the pipeline.
\n- created_at : datetime
\n- The timestamp when this pipeline was created in HubSpot.
\n- updated_at : datetime
\n- The last modified timestamp for this pipeline.
\n- archived : bool
\n- Whether this pipeline is archived.
\n- display_order : int
\n- The place in the list of pipelines where this pipeline is shown\nin the HubSpot UI.
\n\n\nPipelineStage
\nA pipeline stage is one of the various stages defined in a Pipeline.
\n\n
\n- id : str
\n- The HubSpot ID of the stage.
\n- label : str
\n- The human-readabel label for the stage.
\n- metadata : Dict[str, str]
\n- A dictionary of additional data associated with ths stage, such\nas probability.
\n- created_at : datetime
\n- The timestamp when this stage was created in HubSpot.
\n- updated_at : datetime
\n- The last modified timestamp for this stage.
\n- archived : bool
\n- Whether this stage is archived.
\n- archived_at : datetime
\n- The timestamp when this stage was archived.
\n\n\nPublicOwner
\nAn owner in HubSpot. Owners of companies and deals are responsible\nfor driving a sale to close or similar.
\n\n
\n- id : str
\n- The HubSpot ID of the owner.
\n- email : str
\n- The owner's email address in HubSpot.
\n- first_name : str
\n- The owner's first name.
\n- last_name : str
\n- The owner's last name.
\n- user_id : int
\n- The associated user ID if the owner is a HubSpot user.
\n- created_at : datetime
\n- The timestamp when this owner was created in HubSpot.
\n- updated_at : datetime
\n- The last modified timestamp for this owner.
\n- archived : bool
\n- Whether this owner is archived.
\n- teams : List[PublicTeam]
\n- A list of teams the owner is in. See PublicTeam.
\n\n\nPublicTeam
\nA team of owners in HubSpot
\n\n
\n- id : str
\n- The HubSpot ID of the Team.
\n- name : str
\n- The Team's name.
\n- membership : str
\n- One of PRIMARY, SECONDARY, or CHILD.
\n\n\n", "version": "", - "generated": "2024-12-06 10:56:48", + "generated": "2024-12-06 10:58:20", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -63328,7 +63328,7 @@ "name": "RPA.JSON", "doc": "Images is a library for general image manipulation.\nFor image-based desktop automation, use the RPA.Desktop library.
\nCoordinates
\nThe coordinates used in the library are pairs of x and y values that\nrepresent pixels. The upper left corner of the image or screen\nis (0, 0). The x-coordinate increases towards the right, and the y-coordinate\nincreases towards the bottom.
\nRegions are represented as tuples of (left, top, right, bottom). For example,\na 400 by 200-pixel region in the upper left corner would be (0, 0, 400, 200).
\nTemplate matching
\nTemplate matching refers to an operation where the (potential) location of\na smaller image is searched from a larger image. It can be used for verifying\ncertain conditions or locating UI elements for desktop or web automation.
\nRequirements
\nThe default installation depends on Pillow\nlibrary, which is used for general image manipulation operations.
\nFor more robust and faster template matching, the library can use a combination\nof NumPy and OpenCV.\nThey can be installed by opting in to the recognition dependency:
\npip install rpaframework rpaframework-recognition
\nExamples
\nRobot Framework
\nThe Images library can be imported and used directly in Robot Framework,\nfor instance, for capturing screenshots or verifying something on the screen.
\nDesktop automation based on images should be done using the corresponding\ndesktop library, i.e. RPA.Desktop.
\n\n*** Settings ***\nLibrary RPA.Images\n\n*** Keywords ***\nShould show success\n [Documentation] Raises ImageNotFoundError if success image is not on screen\n Find template on screen ${CURDIR}${/}success.png\n\nSave screenshot to results\n [Documentation] Saves screenshot of desktop with unique name\n ${timestamp}= Get current date result_format=%H%M%S\n Take screenshot filename=${OUTPUT_DIR}${/}desktop_${timestamp}.png\n\nPython
\n\nfrom RPA.Images import Images\n\ndef draw_matches_on_image(source, template):\n matches = lib.find_template_in_image(source, template)\n for match in matches:\n lib.show_region_in_image(source, match)\n\n source.save("matches.png")\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:49", + "generated": "2024-12-06 10:58:20", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -63984,7 +63984,7 @@ "name": "RPA.JavaAccessBridge", "doc": "JSON is a library for manipulating JSON files and strings.
\nJSON is a common data interchange format inspired by a subset of\nthe Javascript programming language, but these days is a de facto\nstandard in modern web APIs and is language agnostic.
\n\n\nSerialization
\nThe term serialization refers to the process of converting\nRobot Framework or Python types to JSON or the other way around.
\nBasic types can be easily converted between the domains,\nand the mapping is as follows:
\n\n
\n\n \n\n\n \n \n\n\n JSON \nPython \n\n object \ndict \n\n array \nlist \n\n string \nstr \n\n number (int) \nint \n\n number (real) \nfloat \n\n true \nTrue \n\n false \nFalse \n\n\n null \nNone \n\n\nAbout JSONPath
\nReading and writing values from/to JSON serializable objects is done\nusing JSONPath. It's a syntax designed to quickly and easily refer to\nspecific elements in a JSON structure. The specific flavor used in this\nlibrary is based on jsonpath-ng.
\nCompared to Python's normal dictionary access, JSONPath expressions can\ntarget multiple elements through features such as conditionals and wildcards,\nwhich can simplify many JSON-related operations. It's analogous to XPath\nfor XML structures.
\n\n\nSyntax example
\nFor this example consider the following structure:
\n\n{\n "clients": [\n {\n "name": "Johnny Example",\n "email": "john@example.com",\n "orders": [\n {"address": "Streetroad 123", "price": 103.20},\n {"address": "Streetroad 123", "price": 98.99}\n ]\n },\n {\n "name": "Jane Example",\n "email": "jane@example.com",\n "orders": [\n {"address": "Waypath 321", "price": 22.00},\n {"address": "Streetroad 123", "price": 2330.01}\n ]\n }\n ]\n}\n\nIn the simplest case JSONPath can replace nested access:
\n\n*** Tasks ***\nNested access\n # First order of first client, with direct dictionary access\n ${value}= Set variable ${json}["clients"][0]["orders"][0]\n\n # JSONPath access\n ${value}= Get value from JSON ${json} $.clients[0].orders[0]\n\nBut the power comes from complicated expressions:
\n\n*** Tasks ***\nComplicated expressions\n # Find delivery addresses for all orders\n ${prices}= Get values from JSON $..address\n\n # Find orders that cost over 100\n ${expensives}= Get values from JSON $..orders[?(@.price>100)]\n\n\n\nSupported Expressions
\nThe supported syntax elements are:
\n\n
\n\n \n\n\n \n \n\n\n Element \nDescription \n\n $ \nRoot object/element \n\n @ \nCurrent object/element inside expressions \n\n . or [] \nChild operator \n\n .. \nRecursive descendant operator \n\n `parent` \nParent operator, see functions \n\n * \nWilcard, any element \n\n , \nSelect multiple fields \n\n [n] \nArray index \n\n [a:b:c] \nArray slice (start, end, step) \n\n [a,b] \nUnion of indices or names \n\n [?()] \nApply a filter expression \n\n () \nScript expression \n\n [\\\\field] \nSort descending by field, cannot be combined with\nfilters. \n\n [/field] \nSort ascending by field, cannot be combined with\nfilters. \n\n `str()` \nConvert value to string, see functions \n\n `sub()` \nRegex substitution function, see functions \n\n `len` \nCalculate value's length, see functions \n\n `split()` \nString split function, see functions \n\n\n + - * / \nArithmetic functions, see functions \n\n\nFunctions
\nThis library allows JSON path expressions to include certain functions\nwhich can provide additional benefit to users. These functions are\ngenerally encapsulated in backticks (`). Some functions require\nyou to pass arguments similar to a Python function.
\nFor example, let's say a JSON has nodes on the JSON path\n$.books[*].genres which are represented as strings of genres with\ncommas separating each genre. So for one book, this node might have a\nvalue like horror,young-adult. You can return a list of first genre\nfor each book by using the split function like so:
\n\n*** Task ***\nGet genres\n ${genres}= Get values from JSON $.books[*].genres.`split(,, 0, -1)`\n\nEach functions parameters are defined here:
\n\n
\n\n \n\n\n \n \n\n\n Function \nUsage \n\n str() \nNo parameters, but parenthesis are required \n\n sub(/regex/, repl) \nThe regex pattern must be provided in regex\nand the replacement value provided in repl \n\n len \nNo parameters and no parenthesis \n\n split(char, segment, max_split) \nSeparator character provided as char, which\nindex from the resulting array to be returns\nprovided as segment, and maximum number of\nsplits to perform provided as max_split,\n-1 for all splits. \n\n\n parent \nNo parameters, no parenthesis \nArithmetic Functions
\nJSON Path can be written and combined to concatenate string values\nor perform arithmetic functions on numerical values. Each JSONPath\nexpression used must return the same type, and when performing\nsuch functions between returned lists, each list must be the same\nlength. An example is included in documentation for the keyword\nGet values from JSON.
\n\n\nAdditional Information
\nThere are a multitude of different script expressions\nin addition to the elements listed above, which can\nbe seen in the aforementioned article.
\nFor further library usage examples, see the individual keywords.
\n\n\n", "version": "", - "generated": "2024-12-06 10:56:49", + "generated": "2024-12-06 10:58:20", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -65298,7 +65298,7 @@ "name": "RPA.MFA", "doc": "Java application UI automation library using Java Access Bridge technology.
\nThe library utilizes java-access-bridge-wrapper package to interact with\nJava UI. Currently only the 64-bit Windows OS is supported.
\nInspecting elements
\nWe have built an Assistant for working with Java application's element structure and Java locators.\nThe Assistant provides copy-paste-able locators for each element and also allows testing locators against\nselected application.
\nIf our tools fail to pick the locator from your target application, there is always the\nAccess Bridge Explorer from Google that enables you to see the raw view. Please note that\nAccess Bridge Explorer repository has been archived on July 27, 2022 and is no longer actively\nmaintained.
\nThe Accessibility Insights for Windows can show element properties if application framework\nsupports Windows UI Automation (UIA), see more at using Accessibility Insights. Then the recommended\nlibrary would be RPA.Windows library.
\nSteps to enable
\n\n\n\n
\n- Enable the Java Access Bridge in Windows
\n- Set environment variable RC_JAVA_ACCESS_BRIDGE_DLL as an absolute path to WindowsAccessBridge-64.dll.\nIt is also possible to give DLL location as library initialization parameter access_bridge_path.
\n\nC:\\path\\to\\java\\bin\\jabswitch -enable\nset RC_JAVA_ACCESS_BRIDGE_DLL=C:\\path\\to\\Java\\bin\\WindowsAccessBridge-64.dll\n
\n\n*** Settings ***\nLibrary RPA.JavaAccessBridge access_bridge_path=C:\\path\\to\\Java\\bin\\WindowsAccessBridge-64.dll\n\nAbout Java wrapper callbacks and actions
\nThere might be a compatibility issue with callbacks and actions on target Java application. Possible reasons:
\n\n
\n- target application is executed with 32-bit Java
\n- target application does not support callbacks and/or actions
\nWorkaround for this situation is to initialize JavaAccessBridge library with parameter ignore_callbacks=True.\nThen application's element information is still accessible and any actions on those elements can be performed\nwith RPA.Desktop library. Keep in mind that you can still manuall refresh an element with Refresh Element.
\nNote. There are still keywords, for example. Call Element Action, which will cause error if used in this\nsituation.
\n\n*** Settings ***\nLibrary RPA.JavaAccessBridge ignore_callbacks=True\n\nControlling the Java window
\nKeyword for this purpose is Select Window. Window selection is based on the title parameter, which can be\ngiven as a regular expressions to match the correct window. The keyword brings the window into focus and initially\nreads window's element structure.
\nLocating elements
\nTo automate actions on the Java application, the robot needs locations to various elements\nusing a feature called Java locators. Locator describes properties of an element.
\nAt the moment library contains basic level support for locators.
\nThe common locator types are name and role.
\nTo identify element with more than one property and can be used, for example:
\n\n\n\nrole:push button and name:Clear\n
\nTo address element within parent element > can be used, for example:
\n\n\n\nname:Find Purchase Orders > name:NumberField\n
\nSome keywords accept element as an parameter in place of locator.
\nNew locator type strict has been added in rpaframework==12.5.0. Currently\nproperty values of string type have been evaluated with startsWith which\ncan match several property values. With strict set in the locator string,\nall locator on the right side of this definition will be matched using\nstrict (equal matching), example:
\n\n\n\n# without strict, name can be 'Type', 'Type1', 'Type of'...\nGet Elements role:push button and name:Type\n# name must be equal to 'Type'\nGet Elements role:push button and strict:True and name:Type\n\nKeyword Get Elements has extra parameter strict, which when set to\nTrue forces all locator value matches to be strict, example:
\n\n\n\n# without strict, name can be 'Type', 'Type1', 'Type of'...\nGet Elements role:push button and name:Type\n# name must be equal to 'Type' and role must be equal to 'text'\nGet Elements role:text and name:Type strict=True\n\nAbout JavaElement object
\nThe JavaElement was added in rpaframework==12.3.0 for easy access into\nContextNode objects which have been returned by Get Elements keyword.
\nKeyword Get Elements still returns ContextNode objects, but with parameter\njava_elements=True the keyword returns JavaElement objects instead (they\nstill contain reference to ContextNode object via node property, e.g.\nJavaObject.node).
\nProperties and methods included in the JavaElement:
\n\n
\n- name: str
\n- role: str
\n- description: str
\n- states: list # list presentation of states (string)
\n- ancestry: int # you can set the maximum depth based on this
\n- checked: bool
\n- selected: bool
\n- visible: bool
\n- enabled: bool
\n- showing: bool
\n- focusable: bool
\n- states_string: str
\n- x: int # left coordinate of the element
\n- y: int # top coordinate of the element
\n- width: int
\n- height: int
\n- node: ContextNode # original ContextNode
\n- row: int # table row, -1 if element is not member of table
\n- col: int # table column, -1 if element is not member of table
\n- text: str # text content of the element
\n- column_count: int # table column count
\n- visible_children: list # visible children elements of this element
\n- visible_children_count: int
\n- index_in_parent: int # position in the parent
\n- click() # method for clicking element center
\n- type_text() # method for typing text into element (if possible)
\nInteracting with elements
\nBy default application elements are interacted with Actions supported by the element.\nMost common example is click action supported by an button element.
\nBut because application and technology support for the actions might be limited, it is also\npossible to opt for interaction elements by their coordinates by giving keyword parameter\naction=False if parameter is available.
\nExamples
\nrobotframework
\n\n*** Settings ***\nLibrary RPA.JavaAccessBridge\nLibrary Process\n\n*** Tasks ***\nWrite text into Swing application\n Start Process java -jar BasicSwing.jar\n ... shell=${TRUE}\n ... cwd=${CURDIR}\n Select Window Chat Frame\n Type Text role:text\n ... text for the textarea\n Type Text role:text\n ... text for the input field\n ... index=1\n ... clear=${TRUE}\n Click Element role:push button and name:Send\n\nPython
\n\nfrom RPA.JavaAccessBridge import JavaAccessBridge\nimport subprocess\n\njab = JavaAccessBridge()\n\nsubprocess.Popen(\n ["java", "-jar", "BasicSwing.jar"],\n shell=True,\n cwd=".",\n close_fds=True\n)\njab.select_window("Chat Frame")\njab.type_text(\n "role:text",\n "text for the textarea",\n enter=True\n)\njab.type_text(\n "role:text",\n "text for the input field",\n index=1,\n clear=True\n)\njab.click_element("role:push button and name:Send")\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:49", + "generated": "2024-12-06 10:58:20", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -65848,7 +65848,7 @@ "name": "RPA.MSGraph", "doc": "RPA.MFA is a library intended mainly for generating one-time passwords (OTP)\nand not only, as OAuth2 support was introduced lately.
\nLibrary requires at the minimum rpaframework version 19.4.0.
\nBased on the pyotp and\nrequests_oauthlib packages. It\nprovides support for both MFA with the * OTP related keywords and OAuth2\n"Authorization Code Flow" with the * OAuth * related keywords.
\nIn the below example the mfa secret we are reading from the Robocorp\nVault is the passcode generated by the Authenticator service. The passcode\nvalue is stored into the Vault with key otpsecret.
\nPasscode is typically a long string (16-32 characters), which is provided\nin a form of QR image, but it can be obtained by requesting access to a string.
\nNote that same code can be used to add a mobile phone as a duplicate authentication\ndevice at the same time when the same code is added into the Vault.
\nRobot framework example usage:
\n\n*** Settings ***\nLibrary RPA.MFA\nLibrary RPA.Robocorp.Vault\n\n*** Tasks ***\nGenerate time based code\n ${secrets}= Get Secret mfa\n ${code}= Get Time Based OTP ${secrets}[otpsecret]\n\nPython example usage
\n\nfrom RPA.MFA import MFA\nfrom RPA.Robocorp.Vault import Vault\n\n\ndef main():\n secrets = Vault().get_secret("mfa")\n code = MFA().get_time_based_otp(secrets["otpsecret"])\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:49", + "generated": "2024-12-06 10:58:21", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -67195,7 +67195,7 @@ "name": "RPA.Netsuite", "doc": "The MSGraph library wraps the O365 package, giving robots\nthe ability to access the Microsoft Graph API programmatically.
\nOAuth Configuration
\nGraph's API primarily authenticates via the OAuth 2.0 authorization code grant\nflow or OpenID Connect. This library exposes the OAuth 2.0 flow for robots to\nauthenticate on behalf of users. A user must complete an initial authentication\nflow with the help of our OAuth Graph Example Bot.
\nFor best results, register an app in Azure AD and configure it as so:
\n\n
\n- The type is "Web App".
\n- Redirect URI should be https://login.microsoftonline.com/common/oauth2/nativeclient
\n- The app should be a multi-tenant app.
\n- Accounts in any organizational directory is checked.
\n- Has relevant permissions enabled, check the Microsoft Graph permissions reference\nfor a list of permissions available to MS Graph apps.
\n\n\n", "version": "", - "generated": "2024-12-06 10:56:50", + "generated": "2024-12-06 10:58:21", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -67744,7 +67744,7 @@ "name": "RPA.Notifier", "doc": "Netsuite is a library for accessing Netsuite using NetSuite SOAP web service SuiteTalk.\nThe library extends the netsuitesdk library.
\nMore information available at NetSuite SOAP webservice SuiteTalk.
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Netsuite\nLibrary RPA.Excel.Files\nLibrary RPA.Tables\nTask Setup Authorize Netsuite\n\n*** Tasks ***\nGet data from Netsuite and Store into Excel files\n ${accounts}= Get Accounts account_type=_expense\n ${accounts}= Create table ${accounts}\n Create Workbook\n Append Rows To Worksheet ${accounts}\n Save Workbook netsuite_accounts.xlsx\n Close Workbook\n ${bills}= Get Vendor Bills\n ${bills}= Create table ${bills}\n Create Workbook\n Append Rows To Worksheet ${bills}\n Save Workbook netsuite_bills.xlsx\n Close Workbook\n\n\n*** Keywords ***\nAuthorize Netsuite\n ${secrets}= Get Secret netsuite\n Connect\n ... account=${secrets}[ACCOUNT]\n ... consumer_key=${secrets}[CONSUMER_KEY]\n ... consumer_secret=${secrets}[CONSUMER_KEY]\n ... token_key=${secrets}[CONSUMER_SECRET]\n ... token_secret=${secrets}[TOKEN_KEY]\n\nPython
\n\nfrom RPA.Netsuite import Netsuite\n\nns = Netsuite()\nns.connect()\naccounts = ns.get_accounts()\ncurrencies = ns.get_currencies()\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:50", + "generated": "2024-12-06 10:58:21", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -68342,7 +68342,7 @@ "name": "RPA.OpenAI", "doc": "Notifier is a library interfacting with different notification providers.
\nSupported providers
\n\n
\n- gmail
\n- pushover
\n- slack
\n- telegram
\n- twilio
\nProviders not supported yet via specific keywords
\n\n
\n- gitter
\n- join
\n- mailgun
\n- pagerduty
\n- popcornnotify
\n- pushbullet
\n- simplepush
\n- statuspage
\n- zulip
\nThere is a keyword Generic Notify which can be used\nto call above services, for example.
\n\nGeneric Notify\n provider_name=gitter\n message=Hello from Robot\n token=TOKEN\n room_id=ID_OF_THE_GITTER_ROOM\n\nParameters for different providers can be read from the\nNotifiers documents (link below).
\nRead more at https://notifiers.readthedocs.io/en/latest/
\nAbout kwargs
\nThe **kwargs is a term for any extra named parameters, which\ncan be included in the same way as already named arguments,\ne.g. Notify Email could be called with subject=my email subject\nwhich will be passed through **kwargs.
\nNotifier documentation contains information about all possible\narguments that different providers support.
\nRobot Framework
\n\n&{account}= Create Dictionary\n... host=smtp.office365.com\n... username=ACCOUNT_USERNAME\n... password=ACCOUNT_PASSWORD\nNotify Email\n... to=RECIPIENT_EMAIL\n... from_=SENDER_ADDRESS # passed via kwargs\n... subject=Hello from the Robot # passed via kwargs\n... message=Hello from the Robot\n... &{account} # passed via kwargs\n\n\nnotifier = Notifier()\naccount = {\n "host": "smtp.office365.com",\n "username": "EMAIL_USERNAME",\n "password": "EMAIL_PASSWORD"\n}\nnotifier.email_notify(\n to="RECIPIENT_EMAIL",\n from_="SENDER_EMAIL",\n subject="Hello from the Python Robot",\n message="Hello from the Python RObot",\n **account\n)\n\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Notifier\n\n*** Variables ***\n${SLACK_WEBHOOK} https://hooks.slack.com/services/WEBHOOKDETAILS\n${CHANNEL} notification-channel\n\n*** Tasks ***\nLets notify\n Notify Slack message from robot channel=${CHANNEL} webhook_url=${SLACK_WEBHOOK}\n\nPython
\n\nfrom RPA.Notifier import Notifier\n\nlibrary = Notifier()\n\nslack_attachments = [\n {\n "title": "attachment 1",\n "fallback": "liverpool logo",\n "image_url": "https://upload.wikimedia.org/wikipedia/fi/thumb/c/cd/Liverpool_FC-n_logo.svg/1200px-Liverpool_FC-n_logo.svg.png",\n }\n]\n\nlibrary.notify_slack(\n message='message for the Slack',\n channel="notification-channel",\n webhook_url=slack_webhook_url,\n attachments=slack_attachments,\n)\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:50", + "generated": "2024-12-06 10:58:21", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -68903,9 +68903,9 @@ "RPA.Outlook.Application": { "specversion": 1, "name": "RPA.Outlook.Application", - "doc": "Library to support OpenAI and Azure OpenAI services.
\nLibrary is not included in the rpaframework package, so in order to use it\nyou have to add rpaframework-openai with the desired version in your\nconda.yaml file.
\nRobot Framework example usage
\n\n*** Settings ***\nLibrary RPA.Robocorp.Vault\nLibrary RPA.OpenAI\n\n*** Tasks ***\nCreate a text completion\n ${secrets} Get Secret secret_name=OpenAI\n Authorize To OpenAI api_key=${secrets}[key]\n ${completion} Completion Create\n ... Write a tagline for an ice cream shop\n ... temperature=0.6\n Log ${completion}\n\nPython example usage
\n\nfrom RPA.Robocorp.Vault import Vault\nfrom RPA.OpenAI import OpenAI\n\nsecrets = Vault().get_secret("OpenAI")\nbaselib = OpenAI()\nbaselib.authorize_to_openai(secrets["key"])\n\nresult = baselib.completion_create(\n Create a tagline for icecream shop',\n temperature=0.6,\n)\nprint(result)\n\n\n\n", + "doc": "Outlook.Application is a library for controlling the Outlook application.
\nAbout Email Filtering
\nEmails can be filtered according to specification set by Restrict method of the\nItem class https://docs.microsoft.com/en-us/office/vba/api/outlook.items.restrict.
\nCouple of examples:
\n\nGet Emails\n... email_filter=[Subject]='test email'\n\nMove Emails\n... email_filter=[SenderEmailAddress]='hello@gmail.com'\n\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Outlook.Application\nTask Setup Open Application\nSuite Teardown Quit Application\n\n*** Variables ***\n${RECIPIENT} address@domain.com\n\n*** Tasks ***\nSend email\n Send Email recipients=${RECIPIENT}\n ... subject=This is the subject\n ... body=This is the message body\n .. attachments=approved.png\n\nPython
\n\nfrom RPA.Outlook.Application import Application\n\ndef send_email():\n app = Application()\n app.open_application()\n app.send_email(\n recipients='EMAILADDRESS_1, EMAILADDRESS_2',\n subject='email subject',\n body='email body message',\n attachments='../orders.csv'\n\nFor more information, see: https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/bb219950(v=office.12)
\nCaveats
\nThis library works on a Windows operating system with UI enabled only, and you must\nensure that you open the app first with Open Application before running any\nother relevant keyword which requires to operate on an open app. The application is\nautomatically closed at the end of the task execution, so this can be changed by\nimporting the library with the autoexit=${False} setting.
\n\n*** Settings ***\nLibrary RPA.Excel|Outlook|Word.Application autoexit=${False}\n\nIf you're running the Process by Control Room through a custom self-hosted Worker\nservice, then please make sure that you enable an RDP session by ticking "Use\nDesktop Connection" under the Step configuration.
\nIf you still encounter issues with opening a document, please ensure that file can\nbe opened first manually and dismiss any alert potentially blocking the process.
\nCheck the documentation below for more info:
\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:50", + "generated": "2024-12-06 10:58:21", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -69650,7 +69650,7 @@ "name": "RPA.PDF", "doc": "Outlook.Application is a library for controlling the Outlook application.
\nAbout Email Filtering
\nEmails can be filtered according to specification set by Restrict method of the\nItem class https://docs.microsoft.com/en-us/office/vba/api/outlook.items.restrict.
\nCouple of examples:
\n\nGet Emails\n... email_filter=[Subject]='test email'\n\nMove Emails\n... email_filter=[SenderEmailAddress]='hello@gmail.com'\n\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.Outlook.Application\nTask Setup Open Application\nSuite Teardown Quit Application\n\n*** Variables ***\n${RECIPIENT} address@domain.com\n\n*** Tasks ***\nSend email\n Send Email recipients=${RECIPIENT}\n ... subject=This is the subject\n ... body=This is the message body\n ... attachments=approved.png\n\nPython
\n\nfrom RPA.Outlook.Application import Application\n\ndef send_email():\n app = Application()\n app.open_application()\n app.send_email(\n recipients='EMAILADDRESS_1, EMAILADDRESS_2',\n subject='email subject',\n body='email body message',\n attachments='../orders.csv'\n\nFor more information, see: https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/bb219950(v=office.12)
\nCaveats
\nThis library works on a Windows operating system with UI enabled only, and you must\nensure that you open the app first with Open Application before running any\nother relevant keyword which requires to operate on an open app. The application is\nautomatically closed at the end of the task execution, so this can be changed by\nimporting the library with the autoexit=${False} setting.
\n\n*** Settings ***\nLibrary RPA.Excel|Outlook|Word.Application autoexit=${False}\n\nIf you're running the Process by Control Room through a custom self-hosted Worker\nservice, then please make sure that you enable an RDP session by ticking "Use\nDesktop Connection" under the Step configuration.
\nIf you still encounter issues with opening a document, please ensure that file can\nbe opened first manually and dismiss any alert potentially blocking the process.
\nCheck the documentation below for more info:
\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:50", + "generated": "2024-12-06 10:58:21", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -71305,7 +71305,7 @@ "name": "RPA.Robocloud.Items", "doc": "PDF is a library for managing PDF documents.
\nIt can be used to extract text from PDFs, add watermarks to pages, and\ndecrypt/encrypt documents.
\nMerging and splitting PDFs is supported by Add Files To PDF keyword. Read\nthe keyword documentation for examples.
\nThere is also limited support for updating form field values. (check\nSet Field Value and Save Field Values for more info)
\nThe input PDF file can be passed as an argument to the keywords, or it can be\nomitted if you first call Open PDF. A reference to the current active PDF will\nbe stored in the library instance and can be changed by using the Switch To PDF\nkeyword with another PDF file path, therefore you can asynchronously work with\nmultiple PDFs.
\n\n\nAttention!
\nKeep in mind that this library works with text-based PDFs, and it can't\nextract information from an image-based (scan) PDF file. For accurate\nresults, you have to use specialized external services wrapped by the\nRPA.DocumentAI library.
\nPortal example with video recording demo for parsing PDF invoices:\nhttps://github.com/robocorp/example-parse-pdf-invoice
\nExamples
\nRobot Framework
\n\n*** Settings ***\nLibrary RPA.PDF\nLibrary String\n\n*** Tasks ***\nExtract Data From First Page\n ${text} = Get Text From PDF report.pdf\n ${lines} = Get Lines Matching Regexp ${text}[${1}] .+pain.+\n Log ${lines}\n\nGet Invoice Number\n Open Pdf invoice.pdf\n ${matches} = Find Text Invoice Number\n Log List ${matches}\n\nFill Form Fields\n Switch To Pdf form.pdf\n ${fields} = Get Input Fields encoding=utf-16\n Log Dictionary ${fields}\n Set Field Value Given Name Text Box Mark\n Save Field Values output_path=${OUTPUT_DIR}${/}completed-form.pdf\n ... use_appearances_writer=${True}\n\n\nfrom RPA.PDF import PDF\nfrom robot.libraries.String import String\n\npdf = PDF()\nstring = String()\n\ndef extract_data_from_first_page():\n text = pdf.get_text_from_pdf("report.pdf")\n lines = string.get_lines_matching_regexp(text[1], ".+pain.+")\n print(lines)\n\ndef get_invoice_number():\n pdf.open_pdf("invoice.pdf")\n matches = pdf.find_text("Invoice Number")\n for match in matches:\n print(match)\n\ndef fill_form_fields():\n pdf.switch_to_pdf("form.pdf")\n fields = pdf.get_input_fields(encoding="utf-16")\n for key, value in fields.items():\n print(f"{key}: {value}")\n pdf.set_field_value("Given Name Text Box", "Mark")\n pdf.save_field_values(\n output_path="completed-form.pdf",\n use_appearances_writer=True\n )\n\n\n\n", "version": "", - "generated": "2024-12-06 10:56:51", + "generated": "2024-12-06 10:58:22", "type": "LIBRARY", "scope": "GLOBAL", "docFormat": "HTML", @@ -71663,10 +71663,10 @@ "name": "default", "types": [], "typedocs": {}, - "defaultValue": "A library for interacting with Control Room work items.
\nWork items are used for managing data that go through multiple\nsteps and tasks inside a process. Each step of a process receives\ninput work items from the previous step, and creates output work items for\nthe next step.
\nItem structure
\nA work item's data payload is JSON and allows storing anything that is\nserializable. This library by default interacts with payloads that\nare a dictionary of key-value pairs, which it treats as individual\nvariables. These variables can be exposed to the Robot Framework task\nto be used directly.
\nIn addition to the data section, a work item can also contain files,\nwhich are stored by default in Robocorp Control Room. Adding and using\nfiles with work items requires no additional setup from the user.
\nLoading inputs
\nThe library automatically loads the first input work item, if the\nlibrary input argument autoload is truthy (default).
\nAfter an input has been loaded its payload and files can be accessed\nthrough corresponding keywords, and optionally these values can be modified.
\nE-mail triggering
\nSince a process can be started in Control Room by sending an e-mail, a body\nin Text/JSON/YAML/HTML format can be sent as well and this gets attached to the\ninput work item with the rawEmail payload variable. This library automatically\nparses the content of it and saves into parsedEmail the dictionary\ntransformation of the original e-mail.
\nIf "Parse email" Control Room configuration option is enabled (recommended), then\nyour e-mail is automatically parsed in the work item under the email payload\nvariable, which is a dictionary containing a body holding the final parsed form\nof the interpreted e-mail body. The payload variable parsedEmail is still\navailable for backwards compatibility reasons and holds the very same body inside\nthe parsedEmail[Body].
\nE-mail attachments will be added into the work item as files. Read more on:\nhttps://robocorp.com/docs/control-room/attended-or-unattended/email-trigger
\nExample:
\nAfter starting the process by sending an e-mail with a body like:
\n\n{\n "message": "Hello world!"\n}\n\nThe robot can use the parsed e-mail body's dictionary:
\n\n*** Tasks ***\nUsing Parsed Emails\n ${mail} = Get Work Item Variable email\n Set Work Item Variables &{mail}[body]\n ${message} = Get Work Item Variable message\n Log ${message} # will print "Hello world!"\n\nThe behaviour can be disabled by loading the library with\nauto_parse_email=${None} or altered by providing to it a dictionary with one\n"key: value" where the key is usually "email.text" (deprecated "rawEmail", the\nvariable set by Control Room, which acts as source for the parsed (deprecated raw)\ne-mail data) and the value can be "email.body" (deprecated "parsedEmail", where the\nparsed e-mail data gets stored into), value which can be customized and retrieved\nwith Get Work Item Variable.
\nCreating outputs
\nIt's possible to create multiple new work items as an output from a\ntask. With the keyword Create Output Work Item a new empty item\nis created as a child for the currently loaded input.
\nAll created output items are sent into the input queue of the next\nstep in the process.
\nActive work item
\nKeywords that read or write from a work item always operate on the currently\nactive work item. Usually that is the input item that has been automatically\nloaded when the execution started, but the currently active item is changed\nwhenever the keywords Create Output Work Item or Get Input Work Item\nare called. It's also possible to change the active item manually with the\nkeyword Set current work item.
\nSaving changes
\nWhile a work item is loaded automatically when a suite starts, changes are\nnot automatically reflected back to the source. The work item will be modified\nlocally and then saved when the keyword Save Work Item is called.\nThis also applies to created output work items.
\nIt is recommended to defer saves until all changes have been made to prevent\nleaving work items in a half-modified state in case of failures.
\nLocal Development
\nWhile Control Room is the default implementation, it can also be replaced\nwith a custom adapter. The selection is based on either the default_adapter\nargument for the library, or the RPA_WORKITEMS_ADAPTER environment\nvariable. The library has a built-in alternative adapter called FileAdapter for\nstoring work items to disk.
\nThe FileAdapter uses a local JSON file for input work items.\nIt's a list of work items, each of which has a data payload and files.
\nAn example of a local file with one work item:
\n\n[\n {\n "payload": {\n "variable1": "a-string-value",\n "variable2": ["a", "list", "value"]\n },\n "files": {\n "file1": "path/to/file.ext"\n }\n }\n]\n\nOutput work items (if any) are saved to an adjacent file\nwith the same name, but with the extension .output.json. You can specify\nthrough the "RPA_OUTPUT_WORKITEM_PATH" env var a different path and name for this\nfile.
\nSimulating the Cloud with Robocorp Code VSCode Extension
\nIf you are developing in VSCode with the Robocorp Code extension, you can\nutilize the built in local development features described in the\nDeveloping with work items locally section of the\nUsing work items development guide.
\nExamples
\nRobot Framework
\nIn the following example a task creates an output work item,\nand attaches some variables to it.
\n\n*** Settings ***\nLibrary RPA.Robocorp.WorkItems\n\n*** Tasks ***\nSave variables to Control Room\n Create Output Work Item\n Set work item variables user=Dude mail=address@company.com\n Save Work Item\n\nIn the next step of the process inside a different robot, we can use\npreviously saved work item variables. Also note how the input work item is\nloaded implicitly when the suite starts.
\n\n*** Settings ***\nLibrary RPA.Robocorp.WorkItems\n\n*** Tasks ***\nUse variables from Control Room\n Set task variables from work item\n Log Variables are now available: s${user}, ${mail}\n\nPython
\nThe library can also be used through Python, but it does not implicitly\nload the first work item.
\n\nimport logging\nfrom RPA.Robocorp.WorkItems import WorkItems\n\ndef list_variables(item_id):\n library = WorkItems()\n library.get_input_work_item()\n\n variables = library.get_work_item_variables()\n for variable, value in variables.items():\n logging.info("%s = %s", variable, value)\n\nPython
diff --git a/python.json b/python.json index 43b52f3a1e..d13f4d8e92 100644 --- a/python.json +++ b/python.json @@ -89,7 +89,7 @@ }, { "module": "RPA.HTTP.HTTP", - "markdown": "# Python API\n\n## HTTP\n\n### *class* RPA.HTTP.HTTP(\\*args, \\*\\*kwargs)\n\nThe *RPA.HTTP* library extends functionality of the [RequestsLibrary](https://marketsquare.github.io/robotframework-requests/doc/RequestsLibrary.html).\nSee that documentation for several examples of how to issue `GET`\nrequests and utilize the returned `result` objects.\n\nThis extension provides helper keywords to get an HTTP resource on a\nsession. The `HTTP Get` and `Download` keywords will initiate a\nsession if one does not exist for the provided URL, or use an existing\nsession. When using these keywords, you do not need to manage\nsessions with `Create Session`. Session management is still\nrequired if you use the underlying session keywords, e.g.,\n`* On Session`.\n\n#### DEFAULT_RETRY_METHOD_LIST *= ['DELETE', 'GET', 'TRACE', 'HEAD', 'PUT', 'OPTIONS']*\n\n#### ROBOT_LIBRARY_DOC_FORMAT *= 'reST'*\n\n#### ROBOT_LIBRARY_SCOPE *= 'GLOBAL'*\n\n#### check_vulnerabilities() \u2192 List\n\nCheck for possible vulnerabilities in the installed runtime\nenvironment packages.\n\nCurrently will check only for OpenSSL version and outputs warning message on any\ndiscovered vulnerability.\n\n* **Returns:**\n list of all check results\n\n```robotframework\n*** Tasks ***\nVulnerability Check\n ${results}= Check Vulnerabilities\n FOR ${result} IN @{results}\n Log To Console TYPE: ${result}[type]\n Log To Console VULNERABLE: ${result}[vulnerable]\n Log To Console MESSAGE: ${result}[message]\n END\n```\n\n#### create_client_cert_session(alias, url, headers={}, cookies={}, client_certs=None, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['DELETE', 'GET', 'TRACE', 'HEAD', 'PUT', 'OPTIONS'])\n\nCreate Session: create a HTTP session to a server\n\n`url` Base url of the server\n\n`alias` Robot Framework alias to identify the session\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`client_certs` [\u2018client certificate\u2019, \u2018client key\u2019] PEM files containing the client key and certificate\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n: Defaults to False.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### create_custom_session(alias, url, auth, headers={}, cookies={}, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['DELETE', 'GET', 'TRACE', 'HEAD', 'PUT', 'OPTIONS'])\n\nCreate Session: create a HTTP session to a server\n\n`url` Base url of the server\n\n`alias` Robot Framework alias to identify the session\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`auth` A Custom Authentication object to be passed on to the requests library.\n: [http://docs.python-requests.org/en/master/user/advanced/#custom-authentication](http://docs.python-requests.org/en/master/user/advanced/#custom-authentication)\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n: Defaults to False.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### create_digest_session(alias, url, auth, headers={}, cookies={}, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['DELETE', 'GET', 'TRACE', 'HEAD', 'PUT', 'OPTIONS'])\n\nCreate Session: create a HTTP session to a server\n\n`url` Base url of the server\n\n`alias` Robot Framework alias to identify the session\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`auth` [\u2018DOMAIN\u2019, \u2018username\u2019, \u2018password\u2019] for NTLM Authentication\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n: Defaults to False.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### create_ntlm_session(alias, url, auth, headers={}, cookies={}, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['DELETE', 'GET', 'TRACE', 'HEAD', 'PUT', 'OPTIONS'])\n\nCreate Session: create a HTTP session to a server\n\n`url` Base url of the server\n\n`alias` Robot Framework alias to identify the session\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`auth` [\u2018DOMAIN\u2019, \u2018username\u2019, \u2018password\u2019] for NTLM Authentication\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n: Defaults to False.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### create_session(alias, url, headers={}, cookies={}, auth=None, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['DELETE', 'GET', 'TRACE', 'HEAD', 'PUT', 'OPTIONS'])\n\nCreate Session: create a HTTP session to a server\n\n`alias` Robot Framework alias to identify the session\n\n`url` Base url of the server\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`auth` List of username & password for HTTP Basic Auth\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### delete_all_sessions()\n\nRemoves all the session objects\n\n#### delete_on_session(\\*\\*kwargs)\n\nSends a DELETE request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to send the request is the `url` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### delete_request(alias, uri, data=None, json=None, params=None, headers=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use DELETE On Session instead.\n\nSend a DELETE request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the DELETE request to\n\n`json` a value that will be json encoded\n: and sent as request data if data is not specified\n\n`headers` a dictionary of headers to use with the request\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`timeout` connection timeout\n\n#### download(url: str, target_file: Optional[str] = None, verify: Union[bool, str] = True, force_new_session: bool = False, overwrite: bool = False, stream: bool = False, \\*\\*kwargs) \u2192 dict\n\nAn alias for the `HTTP Get` keyword.\n\nThe difference in use is that the URL is always downloaded based on\nthe URL path (even without `target_file`). If there is a filename\nin the path, then that is used as `target_file` to save to. By default,\nthe filename will be \u201cdownloaded.html\u201d.\n\n```robotframework\n*** Settings ***\nLibrary RPA.HTTP\n\n*** Variables ***\n${DOWNLOAD_PATH}= ${OUTPUT DIR}${/}downloads\n${WORD_EXAMPLE}= https://file-examples.com/wp-content/uploads/2017/02/file-sample_100kB.doc\n${EXCEL_EXAMPLE}= https://file-examples.com/wp-content/uploads/2017/02/file_example_XLS_10.xls\n\n*** Tasks ***\nDownload files with reused session with provided file names\n # Starts a new session\n Download ${WORD_EXAMPLE} target_file=${DOWNLOAD_PATH}\n # Uses the previous session\n Download ${EXCEL_EXAMPLE} target_file=${DOWNLOAD_PATH}\n # Above files are downloaded using the same names as they have\n # on the remote server.\n```\n\n* **Parameters:**\n * **url** \u2013 target URL for GET request\n * **target_file** \u2013 filepath to save request content, default `None`\n * **verify** \u2013 if SSL verification should be done, default `True`,\n a CA_BUNDLE path can also be provided\n * **force_new_session** \u2013 if new HTTP session should be created,\n default `False`\n * **overwrite** \u2013 used together with `target_file`, if `True` will overwrite\n the target file, default `False`\n * **stream** \u2013 if `False` the response content will be immediately downloaded\n* **Returns:**\n request response as a dict\n\n#### get_current_session_alias() \u2192 str\n\nGet request session alias that was used with the `HTTP Get` keyword.\n\n* **Returns:**\n name of session alias as a string\n\n#### *static* get_file_for_streaming_upload(path)\n\nOpens and returns a file descriptor of a specified file to be passed as `data` parameter\nto other requests keywords.\n\nThis allows streaming upload of large files without reading them into memory.\n\nFile descriptor is binary mode and read only. Requests keywords will automatically close the file,\nif used outside this library it\u2019s up to the caller to close it.\n\n#### get_on_session(\\*\\*kwargs)\n\nSends a GET request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to retrieve the resource is the `url`, while query\nstring parameters can be passed as string, dictionary (or list of tuples or bytes)\nthrough the `params`.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### get_request(alias, uri, headers=None, data=None, json=None, params=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use GET On Session instead.\n\nSend a GET request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the GET request to\n\n`params` url parameters to append to the uri\n\n`headers` a dictionary of headers to use with the request\n\n`data` a dictionary of key-value pairs that will be urlencoded\n: and sent as GET data\n or binary data that is sent as the raw body content\n\n`json` a value that will be json encoded\n: and sent as GET data if data is not specified\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`timeout` connection timeout\n\n#### head_on_session(\\*\\*kwargs)\n\nSends a HEAD request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to retrieve the HTTP headers is the `url`.\n\n`allow_redirects` parameter is not provided, it will be set to False (as\nopposed to the default behavior).\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### head_request(alias, uri, headers=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use HEAD On Session instead.\n\nSend a HEAD request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the HEAD request to\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`headers` a dictionary of headers to use with the request\n\n`timeout` connection timeout\n\n#### http_get(url: str, target_file: Optional[str] = None, verify: Union[bool, str] = True, force_new_session: bool = False, overwrite: bool = False, stream: bool = False, \\*\\*kwargs) \u2192 dict\n\nA helper method for `Get Request` that will create a session, perform GET\nrequest, and store the target file, if set by the `target_file` parameter.\n\nThe old session will be used if the URL scheme and the host are the same as\npreviously, e.g., \u2018[https://www.google.fi](https://www.google.fi)\u2019 part of the URL.\n\n```robotframework\n*** Settings ***\nLibrary RPA.HTTP\n\n*** Variables ***\n${DOWNLOAD_PATH}= ${OUTPUT DIR}${/}downloads\n${WORD_EXAMPLE}= https://file-examples.com/wp-content/uploads/2017/02/file-sample_100kB.doc\n${EXCEL_EXAMPLE}= https://file-examples.com/wp-content/uploads/2017/02/file_example_XLS_10.xls\n\n*** Tasks ***\nDownload files with reused session\n # Starts a new session\n HTTP Get ${WORD_EXAMPLE} target_file=${DOWNLOAD_PATH}${/}word-example.doc\n # Uses the previous session\n HTTP Get ${EXCEL_EXAMPLE} target_file=${DOWNLOAD_PATH}${/}excel-example.xls\n```\n\n* **Parameters:**\n * **url** \u2013 target URL for GET request\n * **target_file** \u2013 filepath to save request content, default `None`\n * **verify** \u2013 if SSL verification should be done, default `True`,\n a CA_BUNDLE path can also be provided\n * **force_new_session** \u2013 if new HTTP session should be created,\n default `False`\n * **overwrite** \u2013 used together with `target_file`, if `True` will overwrite\n the target file, default `False`\n * **stream** \u2013 if `False`, the response content will be immediately downloaded\n* **Returns:**\n request response as a dict\n\n#### options_on_session(\\*\\*kwargs)\n\nSends a OPTIONS request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to retrieve the resource is the `url`.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### options_request(alias, uri, headers=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use OPTIONS On Session instead.\n\nSend an OPTIONS request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the OPTIONS request to\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`headers` a dictionary of headers to use with the request\n\n`timeout` connection timeout\n\n#### patch_on_session(\\*\\*kwargs)\n\nSends a PATCH request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### patch_request(alias, uri, data=None, json=None, params=None, headers=None, files=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use PATCH On Session instead.\n\nSend a PATCH request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the PATCH request to\n\n`data` a dictionary of key-value pairs that will be urlencoded\n: and sent as PATCH data\n or binary data that is sent as the raw body content\n or file descriptor retrieved by Get File For Streaming Upload\n\n`json` a value that will be json encoded\n: and sent as PATCH data if data is not specified\n\n`headers` a dictionary of headers to use with the request\n\n`files` a dictionary of file names containing file data to PATCH to the server\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`params` url parameters to append to the uri\n\n`timeout` connection timeout\n\n#### post_on_session(\\*\\*kwargs)\n\nSends a POST request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### post_request(alias, uri, data=None, json=None, params=None, headers=None, files=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use POST On Session instead.\n\nSend a POST request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the POST request to\n\n`data` a dictionary of key-value pairs that will be urlencoded\n: and sent as POST data\n or binary data that is sent as the raw body content\n or passed as such for multipart form data if `files` is also defined\n or file descriptor retrieved by Get File For Streaming Upload\n\n`json` a value that will be json encoded\n: and sent as POST data if files or data is not specified\n\n`params` url parameters to append to the uri\n\n`headers` a dictionary of headers to use with the request\n\n`files` a dictionary of file names containing file data to POST to the server\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`timeout` connection timeout\n\n#### put_on_session(\\*\\*kwargs)\n\nSends a PUT request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### put_request(alias, uri, data=None, json=None, params=None, files=None, headers=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use PUT On Session instead.\n\nSend a PUT request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the PUT request to\n\n`data` a dictionary of key-value pairs that will be urlencoded\n: and sent as PUT data\n or binary data that is sent as the raw body content\n or file descriptor retrieved by Get File For Streaming Upload\n\n`json` a value that will be json encoded\n: and sent as PUT data if data is not specified\n\n`headers` a dictionary of headers to use with the request\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`params` url parameters to append to the uri\n\n`timeout` connection timeout\n\n#### request_should_be_successful(response=None)\n\nFails if response status code is a client or server error (4xx, 5xx).\n\n`response` is the output of other requests keywords like GET On Session.\nIf omitted the last response will be used.\n\nIn case of failure an HTTPError will be automatically raised.\n\nFor a more versatile assert keyword see Status Should Be.\n\n#### session_exists(alias)\n\nReturn True if the session has been already created\n\n`alias` that has been used to identify the Session object in the cache\n\n#### session_less_delete(\\*\\*kwargs)\n\nSends a DELETE request.\n\nThe endpoint used to send the request is the `url` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_get(\\*\\*kwargs)\n\nSends a GET request.\n\nThe endpoint used to retrieve the resource is the `url`, while query\nstring parameters can be passed as string, dictionary (or list of tuples or bytes)\nthrough the `params`.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs` here is a list:\n\n`data` | Dictionary, list of tuples, bytes, or file-like object to send in the body of the request. |\n
\n`json` | A JSON serializable Python object to send in the body of the request. |\n
\n`headers` | Dictionary of HTTP Headers to send with the request. |\n
\n`cookies` | Dict or CookieJar object to send with the request. |\n
\n`files` | Dictionary of file-like-objects (or `{'name': file-tuple}`) for multipart encoding upload. |\n
\n`file-tuple` | can be a 2-tuple `('filename', fileobj)`, 3-tuple `('filename', fileobj, 'content_type')` or a 4-tuple `('filename', fileobj, 'content_type', custom_headers)`, where `'content-type'` is a string defining the content type of the given file and `custom_headers` a dict-like object containing additional headers to add for the file. |\n
\n`auth` | Auth tuple to enable Basic/Digest/Custom HTTP Auth. |\n
\n`timeout` | How many seconds to wait for the server to send data before giving up, as a float, or a `(connect timeout, read timeout)` tuple. |\n
\n`allow_redirects` | Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to `${True}`. |\n
\n`proxies` | Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019}) |\n
\n`verify` | Either a boolean, in which case it controls whether we verify the server\u2019s TLS certificate, or a string, in which case it must be a path to a CA bundle to use. Defaults to `${True}`. Warning: if a session has been created with `verify=${False}` any other requests will not verify the SSL certificate. |\n
\n`stream` | if `${False}`, the response content will be immediately downloaded. |\n
\n`cert` | if String, path to ssl client cert file (.pem). If Tuple, (\u2018cert\u2019, \u2018key\u2019) pair. |\n
\n\nFor more updated and complete information verify the official Requests api documentation:\n[https://requests.readthedocs.io/en/latest/api/](https://requests.readthedocs.io/en/latest/api/)\n\n#### session_less_head(\\*\\*kwargs)\n\nSends a HEAD request.\n\nThe endpoint used to retrieve the HTTP headers is the `url`.\n\n`allow_redirects` parameter is not provided, it will be set to False (as\nopposed to the default behavior).\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_options(\\*\\*kwargs)\n\nSends a OPTIONS request.\n\nThe endpoint used to retrieve the resource is the `url`.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_patch(\\*\\*kwargs)\n\nSends a PUT request.\n\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_post(\\*\\*kwargs)\n\nSends a POST request.\n\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_put(\\*\\*kwargs)\n\nSends a PUT request.\n\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### status_should_be(expected_status, response=None, msg=None)\n\nFails if response status code is different than the expected.\n\n`expected_status` could be the code number as an integer or as string.\nBut it could also be a named status code like \u2018ok\u2019, \u2018created\u2019, \u2018accepted\u2019 or\n\u2018bad request\u2019, \u2018not found\u2019 etc.\n\n`response` is the output of other requests keywords like GET or GET On Session.\nIf omitted the last response will be used.\n\nIn case of failure an HTTPError will be automatically raised.\nA custom failure message `msg` can be added like in built-in keywords.\n\nNew requests keywords like GET or GET On Session (starting from 0.8 version) already have an implicit assert\nmechanism that, by default, verifies the response status code.\nStatus Should Be keyword can be useful when you disable implicit assert using `expected_status=anything`.\n\nFor example when you have a nested keyword that is used for both OK and ERROR responses:\n\n**\\* Test Cases \\***\n
\n
\nTest Get Request And Make Sure Is A 404 Response\n
\n${resp}= GET Custom Keyword That Returns OK or ERROR Response case=notfound\n
\nStatus Should Be 404 ${resp}\n
\nShould Be Equal As Strings NOT FOUND ${resp.reason}\n
\n
\nTest Get Request And Make Sure Is OK\n
\n${resp}= GET Custom Keyword That Returns OK or ERROR Response case=pass\n
\nStatus Should Be 200 ${resp}\n
\nShould Be Equal As Strings OK ${resp.reason}\n
\n
\n**\\* Keywords \\***\n
\n
\nGET Custom Keyword That Returns OK or ERROR Response\n
\n[Arguments] $case\n
\n[\u2026]\n
\nIF $case == notfound\n
\n$resp= GET [\u2026] expected_status=Anything\n
\n[Return] $resp\n
\nELSE\n
\n[\u2026]\n
\n\n#### to_json(content, pretty_print=False)\n\n*DEPRECATED* Please use ${resp.json()} instead. Have a look at the improved HTML output as pretty printing replacement.\n\nConvert a string to a JSON object\n\n`content` String content to convert into JSON\n\n`pretty_print` If defined, will output JSON is pretty print format\n\n#### update_session(alias, headers=None, cookies=None)\n\nUpdates HTTP Session Headers and Cookies.\n\nSession will be identified using the `alias` name.\nDictionary of `headers` and `cookies` to be updated and merged into session data.\n" + "markdown": "# Python API\n\n## HTTP\n\n### *class* RPA.HTTP.HTTP(\\*args, \\*\\*kwargs)\n\nThe *RPA.HTTP* library extends functionality of the [RequestsLibrary](https://marketsquare.github.io/robotframework-requests/doc/RequestsLibrary.html).\nSee that documentation for several examples of how to issue `GET`\nrequests and utilize the returned `result` objects.\n\nThis extension provides helper keywords to get an HTTP resource on a\nsession. The `HTTP Get` and `Download` keywords will initiate a\nsession if one does not exist for the provided URL, or use an existing\nsession. When using these keywords, you do not need to manage\nsessions with `Create Session`. Session management is still\nrequired if you use the underlying session keywords, e.g.,\n`* On Session`.\n\n#### DEFAULT_RETRY_METHOD_LIST *= ['TRACE', 'PUT', 'OPTIONS', 'GET', 'HEAD', 'DELETE']*\n\n#### ROBOT_LIBRARY_DOC_FORMAT *= 'reST'*\n\n#### ROBOT_LIBRARY_SCOPE *= 'GLOBAL'*\n\n#### check_vulnerabilities() \u2192 List\n\nCheck for possible vulnerabilities in the installed runtime\nenvironment packages.\n\nCurrently will check only for OpenSSL version and outputs warning message on any\ndiscovered vulnerability.\n\n* **Returns:**\n list of all check results\n\n```robotframework\n*** Tasks ***\nVulnerability Check\n ${results}= Check Vulnerabilities\n FOR ${result} IN @{results}\n Log To Console TYPE: ${result}[type]\n Log To Console VULNERABLE: ${result}[vulnerable]\n Log To Console MESSAGE: ${result}[message]\n END\n```\n\n#### create_client_cert_session(alias, url, headers={}, cookies={}, client_certs=None, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['TRACE', 'PUT', 'OPTIONS', 'GET', 'HEAD', 'DELETE'])\n\nCreate Session: create a HTTP session to a server\n\n`url` Base url of the server\n\n`alias` Robot Framework alias to identify the session\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`client_certs` [\u2018client certificate\u2019, \u2018client key\u2019] PEM files containing the client key and certificate\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n: Defaults to False.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### create_custom_session(alias, url, auth, headers={}, cookies={}, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['TRACE', 'PUT', 'OPTIONS', 'GET', 'HEAD', 'DELETE'])\n\nCreate Session: create a HTTP session to a server\n\n`url` Base url of the server\n\n`alias` Robot Framework alias to identify the session\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`auth` A Custom Authentication object to be passed on to the requests library.\n: [http://docs.python-requests.org/en/master/user/advanced/#custom-authentication](http://docs.python-requests.org/en/master/user/advanced/#custom-authentication)\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n: Defaults to False.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### create_digest_session(alias, url, auth, headers={}, cookies={}, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['TRACE', 'PUT', 'OPTIONS', 'GET', 'HEAD', 'DELETE'])\n\nCreate Session: create a HTTP session to a server\n\n`url` Base url of the server\n\n`alias` Robot Framework alias to identify the session\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`auth` [\u2018DOMAIN\u2019, \u2018username\u2019, \u2018password\u2019] for NTLM Authentication\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n: Defaults to False.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### create_ntlm_session(alias, url, auth, headers={}, cookies={}, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['TRACE', 'PUT', 'OPTIONS', 'GET', 'HEAD', 'DELETE'])\n\nCreate Session: create a HTTP session to a server\n\n`url` Base url of the server\n\n`alias` Robot Framework alias to identify the session\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`auth` [\u2018DOMAIN\u2019, \u2018username\u2019, \u2018password\u2019] for NTLM Authentication\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n: Defaults to False.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### create_session(alias, url, headers={}, cookies={}, auth=None, timeout=None, proxies=None, verify=False, debug=0, max_retries=3, backoff_factor=0.1, disable_warnings=0, retry_status_list=[], retry_method_list=['TRACE', 'PUT', 'OPTIONS', 'GET', 'HEAD', 'DELETE'])\n\nCreate Session: create a HTTP session to a server\n\n`alias` Robot Framework alias to identify the session\n\n`url` Base url of the server\n\n`headers` Dictionary of default headers\n\n`cookies` Dictionary of cookies\n\n`auth` List of username & password for HTTP Basic Auth\n\n`timeout` Connection timeout\n\n`proxies` Dictionary mapping protocol or protocol and host to the URL of the proxy\n: (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019})\n\n`verify` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.\n\n`debug` Enable http verbosity option more information\n: [https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel](https://docs.python.org/2/library/httplib.html#httplib.HTTPConnection.set_debuglevel)\n\n`max_retries` Number of maximum retries each connection should attempt.\n: By default it will retry 3 times in case of connection errors only.\n A 0 value will disable any kind of retries regardless of other retry settings.\n In case the number of retries is reached a retry exception is raised.\n\n`disable_warnings` Disable requests warning useful when you have large number of testcases\n\n`backoff_factor` Introduces a delay time between retries that is longer after each retry.\n: eg. if backoff_factor is set to 0.1\n the sleep between attemps will be: 0.0, 0.2, 0.4\n More info here: [https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html](https://urllib3.readthedocs.io/en/latest/reference/urllib3.util.html)\n\n`retry_method_list` List of uppercased HTTP method verbs where retries are allowed.\n: By default retries are allowed only on HTTP requests methods that are considered to be\n idempotent (multiple requests with the same parameters end with the same state).\n eg. set to [\u2018POST\u2019, \u2018GET\u2019] to retry only those kind of requests.\n\n`retry_status_list` List of integer HTTP status codes that, if returned, a retry is attempted.\n: eg. set to [502, 503] to retry requests if those status are returned.\n Note that max_retries must be greater than 0.\n\n#### delete_all_sessions()\n\nRemoves all the session objects\n\n#### delete_on_session(\\*\\*kwargs)\n\nSends a DELETE request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to send the request is the `url` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### delete_request(alias, uri, data=None, json=None, params=None, headers=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use DELETE On Session instead.\n\nSend a DELETE request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the DELETE request to\n\n`json` a value that will be json encoded\n: and sent as request data if data is not specified\n\n`headers` a dictionary of headers to use with the request\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`timeout` connection timeout\n\n#### download(url: str, target_file: Optional[str] = None, verify: Union[bool, str] = True, force_new_session: bool = False, overwrite: bool = False, stream: bool = False, \\*\\*kwargs) \u2192 dict\n\nAn alias for the `HTTP Get` keyword.\n\nThe difference in use is that the URL is always downloaded based on\nthe URL path (even without `target_file`). If there is a filename\nin the path, then that is used as `target_file` to save to. By default,\nthe filename will be \u201cdownloaded.html\u201d.\n\n```robotframework\n*** Settings ***\nLibrary RPA.HTTP\n\n*** Variables ***\n${DOWNLOAD_PATH}= ${OUTPUT DIR}${/}downloads\n${WORD_EXAMPLE}= https://file-examples.com/wp-content/uploads/2017/02/file-sample_100kB.doc\n${EXCEL_EXAMPLE}= https://file-examples.com/wp-content/uploads/2017/02/file_example_XLS_10.xls\n\n*** Tasks ***\nDownload files with reused session with provided file names\n # Starts a new session\n Download ${WORD_EXAMPLE} target_file=${DOWNLOAD_PATH}\n # Uses the previous session\n Download ${EXCEL_EXAMPLE} target_file=${DOWNLOAD_PATH}\n # Above files are downloaded using the same names as they have\n # on the remote server.\n```\n\n* **Parameters:**\n * **url** \u2013 target URL for GET request\n * **target_file** \u2013 filepath to save request content, default `None`\n * **verify** \u2013 if SSL verification should be done, default `True`,\n a CA_BUNDLE path can also be provided\n * **force_new_session** \u2013 if new HTTP session should be created,\n default `False`\n * **overwrite** \u2013 used together with `target_file`, if `True` will overwrite\n the target file, default `False`\n * **stream** \u2013 if `False` the response content will be immediately downloaded\n* **Returns:**\n request response as a dict\n\n#### get_current_session_alias() \u2192 str\n\nGet request session alias that was used with the `HTTP Get` keyword.\n\n* **Returns:**\n name of session alias as a string\n\n#### *static* get_file_for_streaming_upload(path)\n\nOpens and returns a file descriptor of a specified file to be passed as `data` parameter\nto other requests keywords.\n\nThis allows streaming upload of large files without reading them into memory.\n\nFile descriptor is binary mode and read only. Requests keywords will automatically close the file,\nif used outside this library it\u2019s up to the caller to close it.\n\n#### get_on_session(\\*\\*kwargs)\n\nSends a GET request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to retrieve the resource is the `url`, while query\nstring parameters can be passed as string, dictionary (or list of tuples or bytes)\nthrough the `params`.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### get_request(alias, uri, headers=None, data=None, json=None, params=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use GET On Session instead.\n\nSend a GET request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the GET request to\n\n`params` url parameters to append to the uri\n\n`headers` a dictionary of headers to use with the request\n\n`data` a dictionary of key-value pairs that will be urlencoded\n: and sent as GET data\n or binary data that is sent as the raw body content\n\n`json` a value that will be json encoded\n: and sent as GET data if data is not specified\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`timeout` connection timeout\n\n#### head_on_session(\\*\\*kwargs)\n\nSends a HEAD request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to retrieve the HTTP headers is the `url`.\n\n`allow_redirects` parameter is not provided, it will be set to False (as\nopposed to the default behavior).\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### head_request(alias, uri, headers=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use HEAD On Session instead.\n\nSend a HEAD request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the HEAD request to\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`headers` a dictionary of headers to use with the request\n\n`timeout` connection timeout\n\n#### http_get(url: str, target_file: Optional[str] = None, verify: Union[bool, str] = True, force_new_session: bool = False, overwrite: bool = False, stream: bool = False, \\*\\*kwargs) \u2192 dict\n\nA helper method for `Get Request` that will create a session, perform GET\nrequest, and store the target file, if set by the `target_file` parameter.\n\nThe old session will be used if the URL scheme and the host are the same as\npreviously, e.g., \u2018[https://www.google.fi](https://www.google.fi)\u2019 part of the URL.\n\n```robotframework\n*** Settings ***\nLibrary RPA.HTTP\n\n*** Variables ***\n${DOWNLOAD_PATH}= ${OUTPUT DIR}${/}downloads\n${WORD_EXAMPLE}= https://file-examples.com/wp-content/uploads/2017/02/file-sample_100kB.doc\n${EXCEL_EXAMPLE}= https://file-examples.com/wp-content/uploads/2017/02/file_example_XLS_10.xls\n\n*** Tasks ***\nDownload files with reused session\n # Starts a new session\n HTTP Get ${WORD_EXAMPLE} target_file=${DOWNLOAD_PATH}${/}word-example.doc\n # Uses the previous session\n HTTP Get ${EXCEL_EXAMPLE} target_file=${DOWNLOAD_PATH}${/}excel-example.xls\n```\n\n* **Parameters:**\n * **url** \u2013 target URL for GET request\n * **target_file** \u2013 filepath to save request content, default `None`\n * **verify** \u2013 if SSL verification should be done, default `True`,\n a CA_BUNDLE path can also be provided\n * **force_new_session** \u2013 if new HTTP session should be created,\n default `False`\n * **overwrite** \u2013 used together with `target_file`, if `True` will overwrite\n the target file, default `False`\n * **stream** \u2013 if `False`, the response content will be immediately downloaded\n* **Returns:**\n request response as a dict\n\n#### options_on_session(\\*\\*kwargs)\n\nSends a OPTIONS request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to retrieve the resource is the `url`.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### options_request(alias, uri, headers=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use OPTIONS On Session instead.\n\nSend an OPTIONS request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the OPTIONS request to\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`headers` a dictionary of headers to use with the request\n\n`timeout` connection timeout\n\n#### patch_on_session(\\*\\*kwargs)\n\nSends a PATCH request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### patch_request(alias, uri, data=None, json=None, params=None, headers=None, files=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use PATCH On Session instead.\n\nSend a PATCH request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the PATCH request to\n\n`data` a dictionary of key-value pairs that will be urlencoded\n: and sent as PATCH data\n or binary data that is sent as the raw body content\n or file descriptor retrieved by Get File For Streaming Upload\n\n`json` a value that will be json encoded\n: and sent as PATCH data if data is not specified\n\n`headers` a dictionary of headers to use with the request\n\n`files` a dictionary of file names containing file data to PATCH to the server\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`params` url parameters to append to the uri\n\n`timeout` connection timeout\n\n#### post_on_session(\\*\\*kwargs)\n\nSends a POST request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### post_request(alias, uri, data=None, json=None, params=None, headers=None, files=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use POST On Session instead.\n\nSend a POST request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the POST request to\n\n`data` a dictionary of key-value pairs that will be urlencoded\n: and sent as POST data\n or binary data that is sent as the raw body content\n or passed as such for multipart form data if `files` is also defined\n or file descriptor retrieved by Get File For Streaming Upload\n\n`json` a value that will be json encoded\n: and sent as POST data if files or data is not specified\n\n`params` url parameters to append to the uri\n\n`headers` a dictionary of headers to use with the request\n\n`files` a dictionary of file names containing file data to POST to the server\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`timeout` connection timeout\n\n#### put_on_session(\\*\\*kwargs)\n\nSends a PUT request on a previously created HTTP Session.\n\nSession will be identified using the `alias` name.\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### put_request(alias, uri, data=None, json=None, params=None, files=None, headers=None, allow_redirects=None, timeout=None)\n\n*DEPRECATED* Please use PUT On Session instead.\n\nSend a PUT request on the session object found using the\ngiven alias\n\n`alias` that will be used to identify the Session object in the cache\n\n`uri` to send the PUT request to\n\n`data` a dictionary of key-value pairs that will be urlencoded\n: and sent as PUT data\n or binary data that is sent as the raw body content\n or file descriptor retrieved by Get File For Streaming Upload\n\n`json` a value that will be json encoded\n: and sent as PUT data if data is not specified\n\n`headers` a dictionary of headers to use with the request\n\n`allow_redirects` Boolean. Set to True if POST/PUT/DELETE redirect following is allowed.\n\n`params` url parameters to append to the uri\n\n`timeout` connection timeout\n\n#### request_should_be_successful(response=None)\n\nFails if response status code is a client or server error (4xx, 5xx).\n\n`response` is the output of other requests keywords like GET On Session.\nIf omitted the last response will be used.\n\nIn case of failure an HTTPError will be automatically raised.\n\nFor a more versatile assert keyword see Status Should Be.\n\n#### session_exists(alias)\n\nReturn True if the session has been already created\n\n`alias` that has been used to identify the Session object in the cache\n\n#### session_less_delete(\\*\\*kwargs)\n\nSends a DELETE request.\n\nThe endpoint used to send the request is the `url` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_get(\\*\\*kwargs)\n\nSends a GET request.\n\nThe endpoint used to retrieve the resource is the `url`, while query\nstring parameters can be passed as string, dictionary (or list of tuples or bytes)\nthrough the `params`.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs` here is a list:\n\n`data` | Dictionary, list of tuples, bytes, or file-like object to send in the body of the request. |\n
\n`json` | A JSON serializable Python object to send in the body of the request. |\n
\n`headers` | Dictionary of HTTP Headers to send with the request. |\n
\n`cookies` | Dict or CookieJar object to send with the request. |\n
\n`files` | Dictionary of file-like-objects (or `{'name': file-tuple}`) for multipart encoding upload. |\n
\n`file-tuple` | can be a 2-tuple `('filename', fileobj)`, 3-tuple `('filename', fileobj, 'content_type')` or a 4-tuple `('filename', fileobj, 'content_type', custom_headers)`, where `'content-type'` is a string defining the content type of the given file and `custom_headers` a dict-like object containing additional headers to add for the file. |\n
\n`auth` | Auth tuple to enable Basic/Digest/Custom HTTP Auth. |\n
\n`timeout` | How many seconds to wait for the server to send data before giving up, as a float, or a `(connect timeout, read timeout)` tuple. |\n
\n`allow_redirects` | Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to `${True}`. |\n
\n`proxies` | Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {\u2018http\u2019: \u2018foo.bar:3128\u2019, \u2018http://host.name\u2019: \u2018foo.bar:4012\u2019}) |\n
\n`verify` | Either a boolean, in which case it controls whether we verify the server\u2019s TLS certificate, or a string, in which case it must be a path to a CA bundle to use. Defaults to `${True}`. Warning: if a session has been created with `verify=${False}` any other requests will not verify the SSL certificate. |\n
\n`stream` | if `${False}`, the response content will be immediately downloaded. |\n
\n`cert` | if String, path to ssl client cert file (.pem). If Tuple, (\u2018cert\u2019, \u2018key\u2019) pair. |\n
\n\nFor more updated and complete information verify the official Requests api documentation:\n[https://requests.readthedocs.io/en/latest/api/](https://requests.readthedocs.io/en/latest/api/)\n\n#### session_less_head(\\*\\*kwargs)\n\nSends a HEAD request.\n\nThe endpoint used to retrieve the HTTP headers is the `url`.\n\n`allow_redirects` parameter is not provided, it will be set to False (as\nopposed to the default behavior).\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_options(\\*\\*kwargs)\n\nSends a OPTIONS request.\n\nThe endpoint used to retrieve the resource is the `url`.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_patch(\\*\\*kwargs)\n\nSends a PUT request.\n\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_post(\\*\\*kwargs)\n\nSends a POST request.\n\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### session_less_put(\\*\\*kwargs)\n\nSends a PUT request.\n\nThe endpoint used to send the request is the `url` parameter, while its body\ncan be passed using `data` or `json` parameters.\n\n`data` can be a dictionary, list of tuples, bytes, or file-like object.\nIf you want to pass a json body pass a dictionary as `json` parameter.\n\nBy default this keyword fails if a status code with error values is returned in the response,\nthis behavior can be modified using the `expected_status` and `msg` parameters,\nread more about it in Status Should Be keyword documentation.\nIn order to disable this implicit assert mechanism you can pass as `expected_status` the values `any` or\n`anything`.\n\nOther optional requests arguments can be passed using `**kwargs`\nsee the GET keyword for the complete list.\n\n#### status_should_be(expected_status, response=None, msg=None)\n\nFails if response status code is different than the expected.\n\n`expected_status` could be the code number as an integer or as string.\nBut it could also be a named status code like \u2018ok\u2019, \u2018created\u2019, \u2018accepted\u2019 or\n\u2018bad request\u2019, \u2018not found\u2019 etc.\n\n`response` is the output of other requests keywords like GET or GET On Session.\nIf omitted the last response will be used.\n\nIn case of failure an HTTPError will be automatically raised.\nA custom failure message `msg` can be added like in built-in keywords.\n\nNew requests keywords like GET or GET On Session (starting from 0.8 version) already have an implicit assert\nmechanism that, by default, verifies the response status code.\nStatus Should Be keyword can be useful when you disable implicit assert using `expected_status=anything`.\n\nFor example when you have a nested keyword that is used for both OK and ERROR responses:\n\n**\\* Test Cases \\***\n
\n
\nTest Get Request And Make Sure Is A 404 Response\n
\n${resp}= GET Custom Keyword That Returns OK or ERROR Response case=notfound\n
\nStatus Should Be 404 ${resp}\n
\nShould Be Equal As Strings NOT FOUND ${resp.reason}\n
\n
\nTest Get Request And Make Sure Is OK\n
\n${resp}= GET Custom Keyword That Returns OK or ERROR Response case=pass\n
\nStatus Should Be 200 ${resp}\n
\nShould Be Equal As Strings OK ${resp.reason}\n
\n
\n**\\* Keywords \\***\n
\n
\nGET Custom Keyword That Returns OK or ERROR Response\n
\n[Arguments] $case\n
\n[\u2026]\n
\nIF $case == notfound\n
\n$resp= GET [\u2026] expected_status=Anything\n
\n[Return] $resp\n
\nELSE\n
\n[\u2026]\n
\n\n#### to_json(content, pretty_print=False)\n\n*DEPRECATED* Please use ${resp.json()} instead. Have a look at the improved HTML output as pretty printing replacement.\n\nConvert a string to a JSON object\n\n`content` String content to convert into JSON\n\n`pretty_print` If defined, will output JSON is pretty print format\n\n#### update_session(alias, headers=None, cookies=None)\n\nUpdates HTTP Session Headers and Cookies.\n\nSession will be identified using the `alias` name.\nDictionary of `headers` and `cookies` to be updated and merged into session data.\n" }, { "module": "RPA.Hubspot.Hubspot", @@ -129,7 +129,7 @@ }, { "module": "RPA.Outlook.Application.Application", - "markdown": "# Python API\n\n## Outlook.Application\n\n### *class* RPA.Outlook.Application.Application(autoexit: bool = True)\n\nOutlook.Application is a library for controlling the Outlook application.\n\n**About Email Filtering**\n\nEmails can be filtered according to specification set by Restrict method of the\nItem class [https://docs.microsoft.com/en-us/office/vba/api/outlook.items.restrict](https://docs.microsoft.com/en-us/office/vba/api/outlook.items.restrict).\n\nCouple of examples:\n\n```robotframework\nGet Emails\n... email_filter=[Subject]='test email'\n\nMove Emails\n... email_filter=[SenderEmailAddress]='hello@gmail.com'\n```\n\n**Examples**\n\n**Robot Framework**\n\n```robotframework\n*** Settings ***\nLibrary RPA.Outlook.Application\nTask Setup Open Application\nSuite Teardown Quit Application\n\n*** Variables ***\n${RECIPIENT} address@domain.com\n\n*** Tasks ***\nSend email\n Send Email recipients=${RECIPIENT}\n ... subject=This is the subject\n ... body=This is the message body\n .. attachments=approved.png\n```\n\n**Python**\n\n```python\nfrom RPA.Outlook.Application import Application\n\ndef send_email():\n app = Application()\n app.open_application()\n app.send_email(\n recipients='EMAILADDRESS_1, EMAILADDRESS_2',\n subject='email subject',\n body='email body message',\n attachments='../orders.csv'\n```\n\nFor more information, see: [https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/bb219950(v=office.12](https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/bb219950(v=office.12))\n\n**Caveats**\n\nThis library works on a Windows operating system with UI enabled only, and you must\nensure that you open the app first with `Open Application` before running any\nother relevant keyword which requires to operate on an open app. The application is\nautomatically closed at the end of the task execution, so this can be changed by\nimporting the library with the autoexit=${False} setting.\n\n```robotframework\n*** Settings ***\nLibrary RPA.Excel|Outlook|Word.Application autoexit=${False}\n```\n\nIf you\u2019re running the Process by Control Room through a custom self-hosted Worker\nservice, then please make sure that you enable an RDP session by ticking \u201cUse\nDesktop Connection\u201d under the Step configuration.\n\nIf you still encounter issues with opening a document, please ensure that file can\nbe opened first manually and dismiss any alert potentially blocking the process.\n\nCheck the documentation below for more info:\n\n- [https://robocorp.com/docs/control-room/unattended/worker-setups/windows-desktop](https://robocorp.com/docs/control-room/unattended/worker-setups/windows-desktop)\n- [https://robocorp.com/docs/faq/windows-server-2016](https://robocorp.com/docs/faq/windows-server-2016)\n\n#### APP_DISPATCH *= 'Outlook.Application'*\n\n#### ROBOT_LIBRARY_DOC_FORMAT *= 'REST'*\n\n#### ROBOT_LIBRARY_SCOPE *= 'GLOBAL'*\n\n#### *property* app\n\n#### close_document(save_changes: bool = False) \u2192 None\n\nClose the active document and app (if open).\n\n* **Parameters:**\n **save_changes** \u2013 Enable changes saving on quit. (False by default)\n\n#### get_emails(account_name: Optional[str] = None, folder_name: Optional[str] = None, email_filter: Optional[str] = None, save_attachments: bool = False, attachment_folder: Optional[str] = None, sort: bool = False, sort_key: Optional[str] = None, sort_descending: bool = True) \u2192 List\n\nGet emails from a specified email folder. Can be used to save attachments.\n\n* **Parameters:**\n * **account_name** \u2013 needs to be given if there are shared accounts in use,\n defaults to None\n * **folder_name** \u2013 target folder where to get emails from, default Inbox\n * **email_filter** \u2013 how to filter email, default no filter,\n ie. all emails in folder\n * **save_attachments** \u2013 if attachments should be saved, defaults to False\n * **attachment_folder** \u2013 target folder where attachments are saved,\n defaults to current directory\n * **sort** \u2013 if emails should be sorted, defaults to False\n * **sort_key** \u2013 needs to be given if emails are to be sorted\n * **sort_descending** \u2013 set to False for ascending sort, defaults to True\n* **Returns:**\n list of emails (list of dictionaries)\n\nExample:\n\n```robotframework\n${emails}= Get Emails\n... email_folder=priority\n... email_filter=[Subject]='incoming order'\n... save_attachments=True\n... attachment_folder=%{ROBOT_ROOT}${/}attachments\n... sort=True\n... sort_key=Received\n... sort_descending=False\n```\n\n#### mark_email_as_read(email: Any, read: bool = True) \u2192 None\n\nMark email \u2018read\u2019 property. Can be used to mark email as unread.\n\n* **Parameters:**\n * **email** \u2013 target email\n * **read** \u2013 True marks email as Read, False as Unread\n\nExample:\n\n```robotframework\n${emails}= Get Emails\n# Mark all as read\nFOR ${email} IN @{emails}\n Mark Email As Read ${email}\nEND\n\n# Mark all as unread\nFOR ${email} IN @{emails}\n Mark Email As Read ${email} False\nEND\n```\n\n#### move_emails(account_name: Optional[str] = None, source_folder: Optional[str] = None, email_filter: Optional[Any] = None, target_folder: Optional[str] = None, mark_as_read: bool = True) \u2192 bool\n\nMove emails from source folder to target folder.\n\nUse of \u201caccount_name\u201d is recommended if there are shared accounts in use.\n\n* **Parameters:**\n * **account_name** \u2013 needs to be given if there are shared accounts in use,\n defaults to None\n * **source_folder** \u2013 folder where source emails exist\n * **email_filter** \u2013 how to filter email, default no filter,\n ie. all emails in folder\n * **target_folder** \u2013 folder where emails are moved into\n * **mark_as_read** \u2013 mark emails as read after move, defaults to True\n* **Returns:**\n True if move operation was success, False if not\n\nPython example.\n\n```python\noutlook = RPA.Outlook.Application()\n\n# moving messages from Inbox to target_folder\noutlook.move_emails(\n target_folder='Processed Invoices',\n email_filter=\"[Subject]='incoming invoice'\"\n)\n\n# moving messages from source_folder to target_folder\noutlook.move_emails(\n source_folder='Incoming Invoices',\n target_folder='Processed Invoices',\n email_filter=\"[Subject]='incoming invoice'\"\n)\n\n# move message objects from `get_emails` result\nemails = outlook.get_emails(\"[Subject]='incoming invoice'\")\noutlook.move_emails(\n target_folder='Processed Invoices',\n email_filter=emails\n)\n```\n\nRobot Framework example.\n\n```robotframework\n# moving messages from Inbox to target_folder\nMove Emails\n... target_folder=Processed Invoices\n... email_filter=[Subject]='incoming invoice'\n\n# moving messages from source_folder to target_folder\nMove Emails\n... source_folder=Incoming Invoices\n... target_folder=Processed Invoices\n... email_filter=[Subject]='incoming invoice'\n\n# moving message objects from `Get Emails` result\n${emails}= Get Emails [Subject]='incoming invoice'\nMove Emails\n... target_folder=Processed Invoices\n... email_filter=${emails}\n```\n\n#### open_application(visible: bool = False, display_alerts: bool = False) \u2192 None\n\nOpen the application.\n\n* **Parameters:**\n * **visible** \u2013 Show the window on opening. (False by default)\n * **display_alerts** \u2013 Display alert popups. (False by default)\n\n#### quit_application(save_changes: bool = False) \u2192 None\n\nQuit the application.\n\n* **Parameters:**\n **save_changes** \u2013 Enable to save changes on quit. (False by default)\n\n#### save_email_attachments(attachments: Any, attachment_folder: str, overwrite: bool = False) \u2192 None\n\nSave email attachments.\n\nNote. Keyword \u201cGet Emails\u201d can be also used to save attachments.\n\n* **Parameters:**\n * **attachments** \u2013 all attachments from email or single attachment\n * **attachment_folder** \u2013 target folder where attachments are saved,\n defaults to current directory\n * **overwrite** \u2013 overwrite existing file if True, defaults to False\n\nExample:\n\n```robotframework\n${emails} = Get Emails\n... email_folder=priority\nFOR ${email} IN @{emails}\n FOR ${attachment} IN @{email}[Attachments]\n IF ${attachment}[size] < 100000 # bytes\n Save Email Attachments\n ... ${attachment}\n ... ${CURDIR}${/}attachments\n ELSE IF \".pdf\" in \"${attachment}[filename]\"\n Save Email Attachments\n ... ${attachment}\n ... ${CURDIR}${/}attachments${/}pdf\n END\n END\nEND\n```\n\n#### send_email(recipients: Union[str, List[str]], subject: str, body: str, html_body: bool = False, attachments: Optional[Union[str, List[str]]] = None, save_as_draft: bool = False, cc_recipients: Optional[Union[str, List[str]]] = None, bcc_recipients: Optional[Union[str, List[str]]] = None, reply_to: Optional[Union[str, List[str]]] = None, check_names: bool = False) \u2192 bool\n\nSend email with Outlook\n\n* **Parameters:**\n * **recipients** \u2013 list of addresses\n * **subject** \u2013 email subject\n * **body** \u2013 email body\n * **html_body** \u2013 True if body contains HTML, defaults to False\n * **attachments** \u2013 list of filepaths to include in the email, defaults to []\n * **save_as_draft** \u2013 email is saved as draft when True\n * **cc_recipients** \u2013 list of addresses for CC field, default None\n * **bcc_recipients** \u2013 list of addresses for BCC field, default None\n * **reply_to** \u2013 list of addresses for changing email\u2019s reply-to field,\n default None\n * **check_names** \u2013 all recipients are checked if the email address is\n recognized on True, default False\n* **Returns:**\n True if there were no errors\n\nExample:\n\n```python\nlibrary = Outlook()\nlibrary.open_application()\ncc_recipients = [\"recipient3@domain.com\",\"recipient4@domain.com\"]\nlibrary.send_email(\n recipients=\"recipient1@domain.com\",\n cc_recipients=cc_recipients,\n bcc_recipients=\"recipient3@domain.com;recipient4@domain.com\",\n subject=\"hello from Outlook\",\n body=\"empty body\",\n attachments=os.path.join(os.path.curdir, \"example.xslx\")\n)\n```\n\n```robotframework\n${cc}= Create List recipient3@domain.com recipient4@domain.com\nSend Email\n... recipients=recipient1@domain.com\n... cc_repients=${cc}\n... bcc_repients=recipient5@domain.com;recipient6@domain.com\n... subject=hello from Outlook\n... body=empty body\n... attachments=${CURDIR}${/}example.xlsx\n```\n\n#### set_object_property(object_instance, property_name: str, value: str)\n\nSet the property of any object.\n\nThis is a utility keyword for Robot Framework syntax to set object\nproperty values.\n\n```robotframework\n${new_value}= Replace String ${value} 10.132. 5511.11.\nSet Object Property ${result} Value ${new_value}\n```\n\n* **Parameters:**\n * **object_instance** \u2013 object instance to set the property\n * **property_name** \u2013 property name to set\n * **value** \u2013 value to set\n\n#### wait_for_email(criterion: Optional[str] = None, timeout: float = 5.0, interval: float = 1.0) \u2192 Any\n\nWait for email matching criterion to arrive into mailbox.\n\n* **Parameters:**\n * **criterion** \u2013 email filter to wait for, defaults to \u201c\u201d\n * **timeout** \u2013 total time in seconds to wait for email, defaults to 5.0\n * **interval** \u2013 time in seconds for new check, defaults to 1.0\n* **Returns:**\n list of messages or False\n\nPossible wait criterias are: SUBJECT, SENDER and BODY\n\nExample:\n\n```robotframework\nWait for Email SUBJECT:rpa task calling timeout=300 interval=10\n```\n" + "markdown": "# Python API\n\n## Outlook.Application\n\n### *class* RPA.Outlook.Application.Application(autoexit: bool = True)\n\nOutlook.Application is a library for controlling the Outlook application.\n\n**About Email Filtering**\n\nEmails can be filtered according to specification set by Restrict method of the\nItem class [https://docs.microsoft.com/en-us/office/vba/api/outlook.items.restrict](https://docs.microsoft.com/en-us/office/vba/api/outlook.items.restrict).\n\nCouple of examples:\n\n```robotframework\nGet Emails\n... email_filter=[Subject]='test email'\n\nMove Emails\n... email_filter=[SenderEmailAddress]='hello@gmail.com'\n```\n\n**Examples**\n\n**Robot Framework**\n\n```robotframework\n*** Settings ***\nLibrary RPA.Outlook.Application\nTask Setup Open Application\nSuite Teardown Quit Application\n\n*** Variables ***\n${RECIPIENT} address@domain.com\n\n*** Tasks ***\nSend email\n Send Email recipients=${RECIPIENT}\n ... subject=This is the subject\n ... body=This is the message body\n ... attachments=approved.png\n```\n\n**Python**\n\n```python\nfrom RPA.Outlook.Application import Application\n\ndef send_email():\n app = Application()\n app.open_application()\n app.send_email(\n recipients='EMAILADDRESS_1, EMAILADDRESS_2',\n subject='email subject',\n body='email body message',\n attachments='../orders.csv'\n```\n\nFor more information, see: [https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/bb219950(v=office.12](https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2007/bb219950(v=office.12))\n\n**Caveats**\n\nThis library works on a Windows operating system with UI enabled only, and you must\nensure that you open the app first with `Open Application` before running any\nother relevant keyword which requires to operate on an open app. The application is\nautomatically closed at the end of the task execution, so this can be changed by\nimporting the library with the autoexit=${False} setting.\n\n```robotframework\n*** Settings ***\nLibrary RPA.Excel|Outlook|Word.Application autoexit=${False}\n```\n\nIf you\u2019re running the Process by Control Room through a custom self-hosted Worker\nservice, then please make sure that you enable an RDP session by ticking \u201cUse\nDesktop Connection\u201d under the Step configuration.\n\nIf you still encounter issues with opening a document, please ensure that file can\nbe opened first manually and dismiss any alert potentially blocking the process.\n\nCheck the documentation below for more info:\n\n- [https://robocorp.com/docs/control-room/unattended/worker-setups/windows-desktop](https://robocorp.com/docs/control-room/unattended/worker-setups/windows-desktop)\n- [https://robocorp.com/docs/faq/windows-server-2016](https://robocorp.com/docs/faq/windows-server-2016)\n\n#### APP_DISPATCH *= 'Outlook.Application'*\n\n#### ROBOT_LIBRARY_DOC_FORMAT *= 'REST'*\n\n#### ROBOT_LIBRARY_SCOPE *= 'GLOBAL'*\n\n#### *property* app\n\n#### close_document(save_changes: bool = False) \u2192 None\n\nClose the active document and app (if open).\n\n* **Parameters:**\n **save_changes** \u2013 Enable changes saving on quit. (False by default)\n\n#### get_emails(account_name: Optional[str] = None, folder_name: Optional[str] = None, email_filter: Optional[str] = None, save_attachments: bool = False, attachment_folder: Optional[str] = None, sort: bool = False, sort_key: Optional[str] = None, sort_descending: bool = True) \u2192 List\n\nGet emails from a specified email folder. Can be used to save attachments.\n\n* **Parameters:**\n * **account_name** \u2013 needs to be given if there are shared accounts in use,\n defaults to None\n * **folder_name** \u2013 target folder where to get emails from, default Inbox\n * **email_filter** \u2013 how to filter email, default no filter,\n ie. all emails in folder\n * **save_attachments** \u2013 if attachments should be saved, defaults to False\n * **attachment_folder** \u2013 target folder where attachments are saved,\n defaults to current directory\n * **sort** \u2013 if emails should be sorted, defaults to False\n * **sort_key** \u2013 needs to be given if emails are to be sorted\n * **sort_descending** \u2013 set to False for ascending sort, defaults to True\n* **Returns:**\n list of emails (list of dictionaries)\n\nExample:\n\n```robotframework\n${emails}= Get Emails\n... email_folder=priority\n... email_filter=[Subject]='incoming order'\n... save_attachments=True\n... attachment_folder=%{ROBOT_ROOT}${/}attachments\n... sort=True\n... sort_key=Received\n... sort_descending=False\n```\n\n#### mark_email_as_read(email: Any, read: bool = True) \u2192 None\n\nMark email \u2018read\u2019 property. Can be used to mark email as unread.\n\n* **Parameters:**\n * **email** \u2013 target email\n * **read** \u2013 True marks email as Read, False as Unread\n\nExample:\n\n```robotframework\n${emails}= Get Emails\n# Mark all as read\nFOR ${email} IN @{emails}\n Mark Email As Read ${email}\nEND\n\n# Mark all as unread\nFOR ${email} IN @{emails}\n Mark Email As Read ${email} False\nEND\n```\n\n#### move_emails(account_name: Optional[str] = None, source_folder: Optional[str] = None, email_filter: Optional[Any] = None, target_folder: Optional[str] = None, mark_as_read: bool = True) \u2192 bool\n\nMove emails from source folder to target folder.\n\nUse of \u201caccount_name\u201d is recommended if there are shared accounts in use.\n\n* **Parameters:**\n * **account_name** \u2013 needs to be given if there are shared accounts in use,\n defaults to None\n * **source_folder** \u2013 folder where source emails exist\n * **email_filter** \u2013 how to filter email, default no filter,\n ie. all emails in folder\n * **target_folder** \u2013 folder where emails are moved into\n * **mark_as_read** \u2013 mark emails as read after move, defaults to True\n* **Returns:**\n True if move operation was success, False if not\n\nPython example.\n\n```python\noutlook = RPA.Outlook.Application()\n\n# moving messages from Inbox to target_folder\noutlook.move_emails(\n target_folder='Processed Invoices',\n email_filter=\"[Subject]='incoming invoice'\"\n)\n\n# moving messages from source_folder to target_folder\noutlook.move_emails(\n source_folder='Incoming Invoices',\n target_folder='Processed Invoices',\n email_filter=\"[Subject]='incoming invoice'\"\n)\n\n# move message objects from `get_emails` result\nemails = outlook.get_emails(\"[Subject]='incoming invoice'\")\noutlook.move_emails(\n target_folder='Processed Invoices',\n email_filter=emails\n)\n```\n\nRobot Framework example.\n\n```robotframework\n# moving messages from Inbox to target_folder\nMove Emails\n... target_folder=Processed Invoices\n... email_filter=[Subject]='incoming invoice'\n\n# moving messages from source_folder to target_folder\nMove Emails\n... source_folder=Incoming Invoices\n... target_folder=Processed Invoices\n... email_filter=[Subject]='incoming invoice'\n\n# moving message objects from `Get Emails` result\n${emails}= Get Emails [Subject]='incoming invoice'\nMove Emails\n... target_folder=Processed Invoices\n... email_filter=${emails}\n```\n\n#### open_application(visible: bool = False, display_alerts: bool = False) \u2192 None\n\nOpen the application.\n\n* **Parameters:**\n * **visible** \u2013 Show the window on opening. (False by default)\n * **display_alerts** \u2013 Display alert popups. (False by default)\n\n#### quit_application(save_changes: bool = False) \u2192 None\n\nQuit the application.\n\n* **Parameters:**\n **save_changes** \u2013 Enable to save changes on quit. (False by default)\n\n#### save_email_attachments(attachments: Any, attachment_folder: str, overwrite: bool = False) \u2192 None\n\nSave email attachments.\n\nNote. Keyword \u201cGet Emails\u201d can be also used to save attachments.\n\n* **Parameters:**\n * **attachments** \u2013 all attachments from email or single attachment\n * **attachment_folder** \u2013 target folder where attachments are saved,\n defaults to current directory\n * **overwrite** \u2013 overwrite existing file if True, defaults to False\n\nExample:\n\n```robotframework\n${emails} = Get Emails\n... email_folder=priority\nFOR ${email} IN @{emails}\n FOR ${attachment} IN @{email}[Attachments]\n IF ${attachment}[size] < 100000 # bytes\n Save Email Attachments\n ... ${attachment}\n ... ${CURDIR}${/}attachments\n ELSE IF \".pdf\" in \"${attachment}[filename]\"\n Save Email Attachments\n ... ${attachment}\n ... ${CURDIR}${/}attachments${/}pdf\n END\n END\nEND\n```\n\n#### send_email(recipients: Union[str, List[str]], subject: str, body: str, html_body: bool = False, attachments: Optional[Union[str, List[str]]] = None, save_as_draft: bool = False, cc_recipients: Optional[Union[str, List[str]]] = None, bcc_recipients: Optional[Union[str, List[str]]] = None, reply_to: Optional[Union[str, List[str]]] = None, check_names: bool = False) \u2192 bool\n\nSend email with Outlook\n\n* **Parameters:**\n * **recipients** \u2013 list of addresses\n * **subject** \u2013 email subject\n * **body** \u2013 email body\n * **html_body** \u2013 True if body contains HTML, defaults to False\n * **attachments** \u2013 list of filepaths to include in the email, defaults to []\n * **save_as_draft** \u2013 email is saved as draft when True\n * **cc_recipients** \u2013 list of addresses for CC field, default None\n * **bcc_recipients** \u2013 list of addresses for BCC field, default None\n * **reply_to** \u2013 list of addresses for changing email\u2019s reply-to field,\n default None\n * **check_names** \u2013 all recipients are checked if the email address is\n recognized on True, default False\n* **Returns:**\n True if there were no errors\n\nExample:\n\n```python\nlibrary = Outlook()\nlibrary.open_application()\ncc_recipients = [\"recipient3@domain.com\",\"recipient4@domain.com\"]\nlibrary.send_email(\n recipients=\"recipient1@domain.com\",\n cc_recipients=cc_recipients,\n bcc_recipients=\"recipient3@domain.com;recipient4@domain.com\",\n subject=\"hello from Outlook\",\n body=\"empty body\",\n attachments=os.path.join(os.path.curdir, \"example.xslx\")\n)\n```\n\n```robotframework\n${cc}= Create List recipient3@domain.com recipient4@domain.com\nSend Email\n... recipients=recipient1@domain.com\n... cc_repients=${cc}\n... bcc_repients=recipient5@domain.com;recipient6@domain.com\n... subject=hello from Outlook\n... body=empty body\n... attachments=${CURDIR}${/}example.xlsx\n```\n\n#### set_object_property(object_instance, property_name: str, value: str)\n\nSet the property of any object.\n\nThis is a utility keyword for Robot Framework syntax to set object\nproperty values.\n\n```robotframework\n${new_value}= Replace String ${value} 10.132. 5511.11.\nSet Object Property ${result} Value ${new_value}\n```\n\n* **Parameters:**\n * **object_instance** \u2013 object instance to set the property\n * **property_name** \u2013 property name to set\n * **value** \u2013 value to set\n\n#### wait_for_email(criterion: Optional[str] = None, timeout: float = 5.0, interval: float = 1.0) \u2192 Any\n\nWait for email matching criterion to arrive into mailbox.\n\n* **Parameters:**\n * **criterion** \u2013 email filter to wait for, defaults to \u201c\u201d\n * **timeout** \u2013 total time in seconds to wait for email, defaults to 5.0\n * **interval** \u2013 time in seconds for new check, defaults to 1.0\n* **Returns:**\n list of messages or False\n\nPossible wait criterias are: SUBJECT, SENDER and BODY\n\nExample:\n\n```robotframework\nWait for Email SUBJECT:rpa task calling timeout=300 interval=10\n```\n" }, { "module": "RPA.PDF.PDF", diff --git a/searchindex.js b/searchindex.js index 7923ff1765..10f04876e7 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["contributing/conventions", "contributing/guide", "contributing/todos", "index", "libraries/archive/index", "libraries/archive/python", "libraries/assistant/index", "libraries/assistant/python", "libraries/browser/index", "libraries/browser_playwright/index", "libraries/browser_selenium/index", "libraries/browser_selenium/python", "libraries/calendar/index", "libraries/calendar/python", "libraries/cloud_aws/index", "libraries/cloud_aws/python", "libraries/cloud_azure/index", "libraries/cloud_azure/python", "libraries/cloud_google/index", "libraries/cloud_google/python", "libraries/crypto/index", "libraries/crypto/python", "libraries/database/index", "libraries/database/python", "libraries/desktop/index", "libraries/desktop/python", "libraries/desktop_clipboard/index", "libraries/desktop_clipboard/python", "libraries/desktop_operatingsystem/index", "libraries/desktop_operatingsystem/python", "libraries/desktop_windows/index", "libraries/desktop_windows/python", "libraries/documentai/index", "libraries/documentai/python", "libraries/documentai_base64ai/index", "libraries/documentai_base64ai/python", "libraries/documentai_nanonets/index", "libraries/documentai_nanonets/python", "libraries/email_exchange/index", "libraries/email_exchange/python", "libraries/email_imapsmtp/index", "libraries/email_imapsmtp/python", "libraries/excel_application/index", "libraries/excel_application/python", "libraries/excel_files/index", "libraries/excel_files/python", "libraries/filesystem/index", "libraries/filesystem/python", "libraries/ftp/index", "libraries/ftp/python", "libraries/http/index", "libraries/http/python", "libraries/hubspot/index", "libraries/hubspot/python", "libraries/images/index", "libraries/images/python", "libraries/javaaccessbridge/index", "libraries/javaaccessbridge/python", "libraries/json/index", "libraries/json/python", "libraries/mfa/index", "libraries/mfa/python", "libraries/msgraph/index", "libraries/msgraph/python", "libraries/netsuite/index", "libraries/netsuite/python", "libraries/notifier/index", "libraries/notifier/python", "libraries/openai/index", "libraries/openai/python", "libraries/outlook_application/index", "libraries/outlook_application/python", "libraries/pdf/index", "libraries/pdf/python", "libraries/robocorp_process/index", "libraries/robocorp_process/python", "libraries/robocorp_storage/index", "libraries/robocorp_storage/python", "libraries/robocorp_vault/index", "libraries/robocorp_vault/python", "libraries/robocorp_workitems/index", "libraries/robocorp_workitems/python", "libraries/robotloglistener/index", "libraries/robotloglistener/python", "libraries/salesforce/index", "libraries/salesforce/python", "libraries/sap/index", "libraries/sap/python", "libraries/slack/index", "libraries/slack/python", "libraries/smartsheet/index", "libraries/smartsheet/python", "libraries/tables/index", "libraries/tables/python", "libraries/tasks/index", "libraries/twitter/index", "libraries/twitter/python", "libraries/windows/index", "libraries/windows/python", "libraries/word_application/index", "libraries/word_application/python", "packages", "releasenotes"], "filenames": ["contributing\\conventions.rst", "contributing\\guide.rst", "contributing\\todos.rst", "index.rst", "libraries\\archive\\index.rst", "libraries\\archive\\python.rst", "libraries\\assistant\\index.rst", "libraries\\assistant\\python.rst", "libraries\\browser\\index.rst", "libraries\\browser_playwright\\index.rst", "libraries\\browser_selenium\\index.rst", "libraries\\browser_selenium\\python.rst", "libraries\\calendar\\index.rst", "libraries\\calendar\\python.rst", "libraries\\cloud_aws\\index.rst", "libraries\\cloud_aws\\python.rst", "libraries\\cloud_azure\\index.rst", "libraries\\cloud_azure\\python.rst", "libraries\\cloud_google\\index.rst", "libraries\\cloud_google\\python.rst", "libraries\\crypto\\index.rst", "libraries\\crypto\\python.rst", "libraries\\database\\index.rst", "libraries\\database\\python.rst", "libraries\\desktop\\index.rst", "libraries\\desktop\\python.rst", "libraries\\desktop_clipboard\\index.rst", "libraries\\desktop_clipboard\\python.rst", "libraries\\desktop_operatingsystem\\index.rst", "libraries\\desktop_operatingsystem\\python.rst", "libraries\\desktop_windows\\index.rst", "libraries\\desktop_windows\\python.rst", "libraries\\documentai\\index.rst", "libraries\\documentai\\python.rst", "libraries\\documentai_base64ai\\index.rst", "libraries\\documentai_base64ai\\python.rst", "libraries\\documentai_nanonets\\index.rst", "libraries\\documentai_nanonets\\python.rst", "libraries\\email_exchange\\index.rst", "libraries\\email_exchange\\python.rst", "libraries\\email_imapsmtp\\index.rst", "libraries\\email_imapsmtp\\python.rst", "libraries\\excel_application\\index.rst", "libraries\\excel_application\\python.rst", "libraries\\excel_files\\index.rst", "libraries\\excel_files\\python.rst", "libraries\\filesystem\\index.rst", "libraries\\filesystem\\python.rst", "libraries\\ftp\\index.rst", "libraries\\ftp\\python.rst", "libraries\\http\\index.rst", "libraries\\http\\python.rst", "libraries\\hubspot\\index.rst", "libraries\\hubspot\\python.rst", "libraries\\images\\index.rst", "libraries\\images\\python.rst", "libraries\\javaaccessbridge\\index.rst", "libraries\\javaaccessbridge\\python.rst", "libraries\\json\\index.rst", "libraries\\json\\python.rst", "libraries\\mfa\\index.rst", "libraries\\mfa\\python.rst", "libraries\\msgraph\\index.rst", "libraries\\msgraph\\python.rst", "libraries\\netsuite\\index.rst", "libraries\\netsuite\\python.rst", "libraries\\notifier\\index.rst", "libraries\\notifier\\python.rst", "libraries\\openai\\index.rst", "libraries\\openai\\python.rst", "libraries\\outlook_application\\index.rst", "libraries\\outlook_application\\python.rst", "libraries\\pdf\\index.rst", "libraries\\pdf\\python.rst", "libraries\\robocorp_process\\index.rst", "libraries\\robocorp_process\\python.rst", "libraries\\robocorp_storage\\index.rst", "libraries\\robocorp_storage\\python.rst", "libraries\\robocorp_vault\\index.rst", "libraries\\robocorp_vault\\python.rst", "libraries\\robocorp_workitems\\index.rst", "libraries\\robocorp_workitems\\python.rst", "libraries\\robotloglistener\\index.rst", "libraries\\robotloglistener\\python.rst", "libraries\\salesforce\\index.rst", "libraries\\salesforce\\python.rst", "libraries\\sap\\index.rst", "libraries\\sap\\python.rst", "libraries\\slack\\index.rst", "libraries\\slack\\python.rst", "libraries\\smartsheet\\index.rst", "libraries\\smartsheet\\python.rst", "libraries\\tables\\index.rst", "libraries\\tables\\python.rst", "libraries\\tasks\\index.rst", "libraries\\twitter\\index.rst", "libraries\\twitter\\python.rst", "libraries\\windows\\index.rst", "libraries\\windows\\python.rst", "libraries\\word_application\\index.rst", "libraries\\word_application\\python.rst", "packages.rst", "releasenotes.rst"], "titles": ["Project conventions", "Contribution guide", "TODO", "RPA Framework", "Archive", "Python API", "Assistant", "Python API", "Browser", "Browser.Playwright", "Browser.Selenium", "Python API", "Calendar", "Python API", "Cloud.AWS", "Python API", "Cloud.Azure", "Python API", "Cloud.Google", "Python API", "Crypto", "Python API", "Database", "Python API", "Desktop", "Python API", "Desktop.Clipboard", "Python API", "Desktop.OperatingSystem", "Python API", "Desktop.Windows", "Python API", "DocumentAI", "Python API", "DocumentAI.Base64AI", "Python API", "DocumentAI.Nanonets", "Python API", "Email.Exchange", "Python API", "Email.ImapSmtp", "Python API", "Excel.Application", "Python API", "Excel.Files", "Python API", "FileSystem", "Python API", "FTP", "Python API", "HTTP", "Python API", "HubSpot", "Python API", "Images", "Python API", "JavaAccessBridge", "Python API", "JSON", "Python API", "MFA", "Python API", "MSGraph", "Python API", "Netsuite", "Python API", "Notifier", "Python API", "OpenAI", "Python API", "Outlook.Application", "Python API", "PDF", "Python API", "Robocorp.Process", "Python API", "Robocorp.Storage", "Python API", "Robocorp.Vault", "Python API", "Robocorp.WorkItems", "Python API", "RobotLogListener", "Python API", "Salesforce", "Python API", "SAP", "Python API", "Slack", "Python API", "Smartsheet", "Python API", "Tables", "Python API", "Tasks", "Twitter", "Python API", "Windows", "Python API", "Word.Application", "Python API", "Robo", "Release notes"], "terms": {"thi": [0, 1, 2, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 39, 41, 43, 45, 47, 51, 53, 57, 59, 61, 63, 71, 73, 75, 81, 83, 87, 91, 93, 98, 100, 102], "describ": [0, 1, 3, 11, 13, 15, 17, 25, 35, 53, 57, 81, 85], "common": [0, 3, 13, 17, 20, 21, 45, 53, 57, 59, 63, 91, 93, 98, 102], "all": [0, 2, 3, 5, 7, 11, 15, 17, 19, 21, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 51, 53, 57, 59, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 91, 93, 98, 100], "contain": [0, 1, 3, 5, 7, 11, 13, 15, 19, 25, 31, 35, 37, 39, 41, 45, 47, 51, 53, 57, 59, 61, 65, 67, 69, 71, 75, 77, 79, 81, 87, 91, 93, 98, 102], "rpa": [0, 1, 5, 7, 8, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100], "framework": [0, 1, 7, 11, 13, 15, 17, 19, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 65, 67, 69, 71, 73, 75, 77, 79, 81, 82, 83, 85, 89, 91, 93, 94, 98, 100], "repositori": [0, 3, 15, 57, 102], "librari": [0, 1, 5, 7, 8, 9, 11, 13, 15, 17, 18, 19, 20, 21, 23, 25, 27, 29, 31, 32, 33, 34, 35, 36, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 56, 57, 59, 61, 62, 63, 65, 67, 68, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 97, 98, 100, 102], "which": [0, 3, 5, 7, 11, 13, 15, 17, 19, 25, 29, 31, 35, 37, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 63, 67, 71, 75, 77, 79, 81, 83, 85, 87, 91, 93, 98, 100, 102], "ar": [0, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 31, 33, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 63, 65, 69, 71, 77, 79, 81, 83, 85, 91, 93, 96, 98, 102], "part": [0, 1, 9, 11, 15, 19, 31, 47, 51, 87, 102], "should": [0, 1, 2, 3, 5, 7, 11, 15, 19, 21, 23, 25, 31, 39, 41, 43, 45, 51, 53, 55, 57, 59, 61, 63, 67, 71, 81, 83, 85, 91, 93, 102], "follow": [0, 1, 3, 5, 7, 11, 13, 15, 19, 21, 25, 31, 32, 33, 35, 39, 41, 43, 51, 53, 57, 59, 63, 75, 81, 85, 91, 93, 96, 98, 102], "make": [0, 1, 3, 7, 11, 15, 41, 43, 51, 71, 87, 93, 96, 98, 100, 102], "mainten": [0, 102], "bootstrap": 0, "easier": [0, 53, 93, 102], "share": [0, 11, 19, 21, 63, 71, 98, 102], "i": [0, 1, 2, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "prefix": [0, 11, 15, 25, 39, 41, 102], "rpaframework": [0, 1, 3, 7, 9, 15, 19, 23, 25, 33, 35, 37, 39, 55, 57, 61, 69, 98], "exampl": [0, 1, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "secret": [0, 3, 11, 15, 17, 19, 21, 23, 33, 35, 37, 39, 41, 53, 61, 63, 65, 69, 75, 78, 83, 85, 96, 102], "manag": [0, 3, 15, 25, 27, 29, 31, 51, 73, 76, 81, 85, 102], "us": [0, 1, 2, 3, 5, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 21, 23, 25, 27, 31, 32, 33, 34, 35, 36, 39, 41, 43, 45, 47, 49, 51, 55, 57, 59, 61, 63, 65, 66, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "both": [0, 3, 25, 33, 35, 45, 51, 53, 61, 91, 93, 96, 102], "git": [0, 3], "pypi": [0, 3, 19, 102], "packag": [0, 5, 7, 9, 13, 15, 19, 51, 55, 57, 61, 62, 63, 68, 69, 98], "releas": [0, 3, 31, 81, 98], "under": [0, 3, 11, 43, 61, 71, 81, 98, 100, 102], "python": [0, 1, 3, 9, 102], "namespac": 0, "current": [0, 3, 5, 7, 11, 13, 15, 19, 25, 31, 33, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 63, 71, 73, 81, 85, 91, 93, 98, 100, 102], "sourc": [0, 3, 7, 11, 15, 17, 19, 21, 25, 31, 39, 41, 43, 45, 47, 49, 55, 69, 71, 77, 79, 81, 93, 102], "e": [0, 3, 7, 11, 13, 25, 31, 33, 35, 38, 40, 41, 43, 45, 47, 51, 53, 55, 57, 63, 67, 69, 77, 79, 81, 87, 91, 93, 98, 102], "host": [0, 23, 43, 49, 51, 67, 71, 100, 102], "github": [0, 1, 3, 7, 9, 11, 15, 19, 35, 73, 87, 102], "These": [0, 11, 15, 39, 43, 53, 59, 81, 85, 91], "public": [0, 15, 102], "inspect": [0, 15, 31, 47, 57, 93, 98, 102], "fork": [0, 102], "user": [0, 3, 6, 7, 11, 15, 19, 23, 25, 29, 31, 35, 39, 41, 47, 49, 51, 53, 59, 61, 63, 67, 81, 87, 91, 93, 96, 98, 102], "thei": [0, 3, 5, 7, 11, 21, 25, 35, 41, 47, 51, 53, 55, 57, 63, 69, 91, 93, 98, 102], "robocorp": [0, 3, 7, 11, 15, 17, 19, 21, 23, 31, 33, 35, 37, 39, 41, 43, 53, 61, 63, 69, 71, 73, 75, 77, 79, 81, 83, 85, 93, 98, 100, 102], "": [0, 1, 5, 7, 11, 15, 19, 25, 27, 29, 31, 33, 39, 41, 43, 45, 49, 51, 53, 55, 57, 59, 61, 63, 64, 69, 71, 75, 81, 87, 91, 93, 96, 98, 100, 102], "organ": 0, "The": [0, 1, 2, 3, 7, 9, 11, 15, 17, 19, 21, 23, 25, 31, 33, 35, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 85, 87, 91, 93, 96, 98, 100, 102], "primari": [0, 7, 23, 53, 91], "index": [0, 3, 11, 19, 35, 43, 45, 53, 57, 59, 61, 87, 91, 93, 98, 102], "reserv": [0, 7, 81, 98], "accord": [0, 3, 7, 41, 45, 47, 71, 93], "polici": [0, 15], "also": [0, 1, 3, 7, 11, 15, 19, 25, 31, 39, 41, 45, 47, 51, 53, 57, 59, 71, 73, 81, 83, 85, 91, 93, 98, 102], "includ": [0, 3, 5, 7, 11, 15, 19, 23, 25, 35, 39, 41, 45, 47, 53, 57, 59, 63, 67, 69, 71, 75, 81, 87, 91, 93, 96, 98, 102], "correct": [0, 3, 7, 13, 45, 57, 81, 102], "trove": 0, "classifi": [0, 19], "find": [0, 2, 7, 11, 19, 25, 31, 43, 45, 47, 55, 57, 59, 73, 87, 93, 98, 100, 102], "them": [0, 7, 11, 15, 25, 31, 33, 41, 43, 47, 51, 53, 91, 93, 96, 102], "have": [0, 3, 7, 11, 15, 19, 23, 25, 35, 39, 41, 43, 45, 49, 51, 53, 57, 59, 63, 69, 73, 81, 83, 85, 87, 91, 93, 98, 102], "technic": 0, "api": [0, 2, 3, 50, 62, 68, 74, 95, 102], "simpl": [0, 11, 45, 53, 85, 102], "usag": [0, 11, 19, 21, 25, 35, 37, 39, 47, 53, 59, 61, 69, 87, 96, 98, 102], "instruct": [0, 102], "page": [0, 3, 7, 11, 15, 19, 25, 31, 37, 53, 65, 73, 83, 87, 98, 102], "handl": [0, 2, 7, 11, 13, 15, 23, 31, 43, 57, 81, 85, 93, 98, 102], "store": [0, 5, 11, 15, 19, 21, 23, 25, 31, 33, 41, 45, 51, 61, 63, 65, 73, 76, 77, 79, 81, 85, 93, 102], "gener": [0, 3, 7, 11, 15, 19, 21, 25, 32, 33, 39, 41, 45, 53, 55, 59, 61, 63, 67, 69, 81, 102], "sphinx": 0, "robot": [0, 1, 3, 5, 7, 11, 13, 15, 17, 19, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 62, 63, 65, 67, 68, 69, 71, 73, 75, 77, 79, 81, 82, 83, 85, 87, 91, 93, 94, 98, 100, 102], "autogener": 0, "from": [0, 1, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 27, 29, 31, 32, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "file": [0, 3, 4, 5, 7, 11, 15, 19, 21, 23, 31, 33, 35, 37, 39, 41, 43, 46, 47, 49, 51, 57, 59, 63, 65, 69, 71, 73, 75, 77, 79, 81, 83, 85, 91, 93, 100, 102], "docstr": [0, 102], "restructuredtext": 0, "In": [0, 3, 9, 11, 13, 15, 21, 23, 29, 31, 39, 41, 51, 53, 59, 61, 63, 75, 81, 83, 85, 87, 91, 98, 102], "depth": [0, 57, 98, 102], "guid": [0, 3, 7, 11, 15, 41, 59, 81, 85, 102], "separ": [0, 3, 11, 15, 19, 25, 37, 41, 43, 47, 59, 61, 75, 81, 91, 98, 102], "portal": [0, 7, 33, 35, 39, 41, 73, 81, 91, 98, 102], "creat": [0, 1, 2, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 33, 37, 39, 41, 43, 45, 47, 49, 51, 53, 59, 61, 63, 65, 67, 69, 71, 72, 75, 81, 83, 85, 87, 91, 93, 96, 100, 102], "respons": [0, 7, 15, 17, 19, 35, 39, 41, 51, 53, 61, 69, 75, 96, 102], "develop": [0, 1, 11, 15, 17, 31, 41, 53, 61, 71, 77, 79, 81, 85, 91, 96, 102], "automat": [0, 7, 11, 23, 33, 39, 41, 43, 45, 51, 53, 71, 77, 79, 81, 87, 93, 100, 102], "black": [0, 3], "tool": [0, 3, 11, 17, 57, 98, 102], "For": [0, 3, 7, 11, 12, 15, 19, 23, 25, 31, 35, 37, 39, 41, 51, 53, 55, 59, 63, 69, 71, 73, 74, 81, 83, 88, 91, 93, 98, 102], "strictli": 0, "flake8": [0, 3], "On": [0, 11, 51, 83, 98, 102], "top": [0, 7, 17, 19, 25, 31, 35, 41, 45, 55, 57, 98, 100, 102], "we": [0, 2, 25, 33, 51, 57, 61, 81, 102], "pylint": 0, "even": [0, 11, 19, 25, 39, 51, 83], "isort": 0, "mypi": [0, 2], "valid": [0, 2, 7, 13, 31, 35, 41, 45, 53, 59, 69, 91, 93, 102], "pull": [0, 1, 3, 102], "request": [0, 3, 6, 7, 11, 15, 19, 35, 37, 51, 53, 61, 63, 75, 85, 91, 96, 98, 102], "probabl": [0, 53, 69, 98], "offer": [0, 3, 7, 11, 33, 87, 102], "pre": [0, 7, 33], "commit": [0, 3, 23, 102], "hook": [0, 11, 67], "check": [0, 7, 11, 13, 15, 19, 29, 31, 33, 35, 39, 41, 43, 45, 47, 51, 57, 63, 71, 73, 83, 87, 98, 100, 102], "reason": [0, 51, 57, 81, 102], "why": [0, 41], "auto": [0, 7, 11, 19, 23, 45, 102], "good": [0, 1, 3, 11], "idea": [0, 11], "similar": [0, 11, 15, 25, 35, 53, 59, 61, 102], "javascript": [0, 11, 59], "prettier": 0, "decent": 0, "coverag": 0, "through": [0, 1, 11, 15, 25, 35, 39, 41, 43, 51, 53, 59, 61, 67, 71, 81, 93, 98, 100, 102], "unittest": [0, 3], "main": [0, 3, 7, 11, 25, 33, 61, 93, 98, 102], "pytest": [0, 3], "track": [0, 1, 19, 98], "can": [0, 1, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 67, 69, 71, 73, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "done": [0, 3, 11, 25, 39, 41, 51, 55, 59, 63, 81, 83, 93, 102], "via": [0, 1, 11, 15, 23, 35, 37, 53, 57, 63, 67, 69, 81, 85, 91, 98, 102], "plug": 0, "each": [0, 3, 5, 7, 11, 15, 33, 35, 41, 45, 51, 53, 57, 59, 75, 81, 87, 91, 93, 102], "task": [0, 3, 5, 7, 11, 15, 17, 19, 21, 23, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 82, 83, 85, 93, 96, 98, 100, 102], "provid": [0, 2, 3, 7, 11, 15, 32, 35, 39, 41, 45, 51, 53, 57, 59, 61, 63, 67, 69, 75, 81, 85, 87, 91, 98, 102], "keyword": [0, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "act": [0, 7, 11, 81, 102], "runnabl": 0, "accept": [0, 3, 7, 11, 15, 35, 45, 51, 53, 57, 61, 93, 98, 102], "addit": [0, 11, 13, 15, 23, 25, 41, 51, 53, 63, 81, 85, 91, 93, 102], "function": [0, 7, 11, 19, 25, 27, 31, 45, 51, 63, 81, 87, 91, 102], "best": [0, 11, 41, 53, 63], "option": [0, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "action": [0, 3, 7, 11, 19, 23, 25, 29, 41, 57, 87, 98, 102], "step": [0, 1, 3, 7, 9, 19, 33, 41, 43, 53, 57, 59, 71, 75, 81, 100, 102], "least": [0, 1, 2, 7, 39, 91, 102], "ci": [0, 3], "pipelin": 0, "matrix": 0, "platform": [0, 2, 3, 11, 19, 24, 25, 29, 102], "window": [0, 3, 7, 11, 25, 43, 57, 71, 87, 100, 102], "linux": [0, 11, 47, 102], "maco": [0, 102], "3": [0, 3, 9, 11, 13, 15, 19, 31, 45, 51, 57, 69, 83, 87, 93, 98], "8": [0, 3, 13, 15, 21, 23, 31, 35, 41, 47, 51, 59, 87, 93, 98], "9": [0, 3, 7, 9, 39, 87, 93, 98], "10": [0, 13, 31, 39, 41, 43, 45, 47, 57, 65, 69, 71, 75, 87, 93, 98, 100], "keep": [0, 7, 11, 33, 57, 73, 93, 98, 102], "remov": [0, 2, 11, 19, 31, 41, 43, 45, 47, 49, 51, 59, 81, 87, 91, 93, 102], "bug": [0, 3, 45, 102], "fix": [0, 1, 23, 25, 41, 98, 102], "etc": [0, 11, 33, 39, 45, 51, 91, 102], "affect": [0, 2, 15, 43, 45, 83, 98, 102], "entri": [0, 15, 25, 85], "meant": [0, 102], "human": [0, 2, 7, 25, 29, 31, 53, 81, 87, 102], "readabl": [0, 87], "an": [0, 1, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 31, 33, 35, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 69, 71, 73, 75, 77, 79, 81, 85, 87, 91, 93, 96, 98, 100, 102], "method": [0, 2, 3, 5, 11, 15, 17, 21, 31, 43, 51, 57, 61, 63, 71, 83, 85, 91, 98, 102], "process": [0, 3, 7, 11, 19, 28, 29, 31, 32, 33, 34, 35, 36, 37, 39, 43, 45, 47, 57, 59, 71, 81, 87, 93, 98, 100, 102], "entir": [0, 15, 39, 57, 63, 81, 87, 102], "manual": [0, 7, 11, 43, 57, 71, 77, 79, 81, 93, 100, 102], "reli": [0, 11, 33, 77, 79], "towncrier": 0, "semant": [0, 3], "when": [0, 1, 2, 7, 11, 13, 15, 19, 23, 25, 31, 33, 39, 41, 45, 51, 57, 59, 61, 63, 69, 71, 77, 79, 81, 83, 85, 87, 91, 93, 98, 102], "gist": 0, "given": [0, 7, 11, 13, 15, 17, 19, 21, 23, 25, 31, 35, 37, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 65, 71, 73, 75, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "number": [0, 3, 7, 11, 13, 15, 19, 23, 39, 41, 43, 45, 51, 53, 59, 65, 67, 69, 73, 75, 85, 87, 91, 93, 96, 98, 100, 102], "major": [0, 19, 102], "minor": [0, 102], "patch": [0, 9, 51, 102], "increment": [0, 53], "you": [0, 1, 3, 7, 9, 11, 15, 19, 23, 25, 33, 35, 39, 41, 43, 45, 51, 53, 57, 59, 61, 63, 69, 71, 73, 77, 79, 81, 85, 87, 91, 96, 98, 100, 102], "incompat": [0, 11, 102], "add": [0, 2, 5, 7, 9, 11, 13, 19, 21, 31, 41, 43, 51, 53, 59, 61, 69, 73, 81, 85, 91, 93, 98, 102], "backward": [0, 81, 93, 102], "compat": [0, 23, 37, 41, 57, 81, 98, 102], "manner": 0, "support": [0, 2, 5, 7, 11, 17, 19, 23, 25, 31, 32, 33, 35, 37, 39, 41, 43, 45, 49, 53, 57, 60, 61, 67, 69, 73, 91, 93, 98, 102], "sinc": [0, 39, 45, 81, 98, 102], "6": [0, 3, 11, 13, 43, 45, 69, 87, 93, 98], "improv": [0, 1, 51, 102], "maintain": [0, 3, 7, 57, 63, 98], "after": [0, 3, 7, 11, 15, 31, 39, 41, 43, 45, 47, 51, 57, 59, 61, 63, 71, 81, 87, 93, 100, 102], "reach": [0, 47, 51, 98, 102], "certain": [0, 5, 7, 11, 35, 55, 59, 81, 98], "size": [0, 3, 5, 7, 11, 15, 19, 25, 45, 47, 49, 69, 71, 93, 102], "convert": [0, 2, 15, 19, 23, 25, 41, 45, 51, 53, 59, 81, 91, 93, 98, 102], "input": [0, 3, 6, 7, 11, 13, 15, 19, 21, 25, 31, 35, 41, 43, 47, 57, 59, 73, 75, 81, 85, 87, 93, 98, 102], "argument": [0, 5, 7, 11, 15, 21, 23, 25, 33, 41, 43, 45, 47, 51, 53, 59, 61, 67, 69, 73, 75, 81, 83, 85, 91, 93, 98, 102], "strive": 0, "older": [0, 11, 43, 102], "than": [0, 7, 11, 13, 19, 23, 39, 47, 51, 53, 55, 57, 59, 69, 75, 93, 96, 102], "aim": 0, "newer": [0, 3, 8, 9, 11, 102], "requir": [0, 3, 7, 9, 11, 15, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 51, 55, 57, 59, 61, 63, 71, 81, 87, 96, 100, 102], "featur": [0, 1, 3, 7, 11, 17, 19, 21, 25, 35, 53, 57, 59, 81, 102], "backport": 0, "There": [1, 7, 11, 31, 39, 45, 57, 59, 63, 67, 73, 85, 91, 98, 102], "sever": [1, 31, 51, 57, 63, 85, 91, 102], "wai": [1, 2, 3, 7, 11, 15, 17, 19, 25, 31, 39, 43, 47, 59, 63, 67, 85, 91, 93, 98, 102], "section": [1, 11, 17, 53, 81, 98, 102], "variou": [1, 11, 25, 41, 53, 57, 93, 102], "project": [1, 9, 11, 19, 33], "primarili": [1, 63, 102], "issu": [1, 3, 9, 11, 43, 45, 51, 57, 71, 98, 100, 102], "tracker": [1, 9, 87], "try": [1, 7, 11, 25, 45, 53, 81, 83, 91, 98, 102], "explain": [1, 11, 102], "clearli": 1, "what": [1, 2, 7, 11, 43, 53, 65, 69, 102], "expect": [1, 11, 13, 15, 17, 23, 33, 39, 43, 51, 57, 87, 93, 98, 102], "outcom": 1, "wa": [1, 7, 11, 17, 23, 31, 39, 41, 47, 51, 53, 55, 57, 59, 61, 63, 67, 71, 83, 85, 96, 102], "possibli": [1, 57], "reproduc": 1, "attach": [1, 11, 19, 39, 41, 53, 67, 71, 81, 91, 102], "code": [1, 3, 11, 13, 15, 19, 31, 39, 41, 45, 49, 51, 53, 61, 63, 77, 79, 81, 96, 98, 102], "veri": [1, 11, 33, 81], "help": [1, 17, 63, 69, 98, 102], "inform": [1, 2, 3, 5, 6, 7, 11, 13, 15, 17, 19, 23, 25, 28, 29, 31, 39, 41, 51, 57, 65, 67, 71, 73, 75, 85, 91, 93, 98, 102], "version": [1, 3, 7, 9, 11, 15, 19, 33, 35, 37, 41, 51, 53, 57, 61, 69, 71], "interpret": [1, 81, 91], "oper": [1, 3, 5, 7, 11, 13, 15, 17, 19, 20, 21, 23, 25, 31, 38, 39, 40, 41, 43, 53, 55, 59, 65, 71, 81, 84, 85, 89, 91, 93, 96, 98, 100, 102], "system": [1, 3, 7, 11, 15, 26, 29, 31, 43, 53, 69, 71, 93, 98, 100, 102], "error": [1, 2, 3, 7, 11, 15, 19, 31, 41, 43, 45, 47, 49, 51, 53, 57, 71, 75, 81, 83, 85, 87, 102], "messag": [1, 2, 3, 7, 11, 15, 19, 31, 39, 41, 49, 51, 53, 66, 67, 69, 71, 81, 87, 88, 89, 102], "traceback": [1, 102], "applic": [1, 3, 7, 11, 15, 19, 25, 30, 31, 39, 41, 45, 56, 57, 63, 81, 87, 91, 98, 102], "If": [1, 7, 11, 13, 15, 19, 21, 23, 25, 29, 31, 33, 39, 41, 43, 45, 47, 51, 53, 57, 59, 63, 71, 81, 83, 85, 87, 91, 93, 98, 100, 102], "possibl": [1, 3, 7, 9, 11, 15, 19, 31, 37, 39, 41, 43, 45, 51, 57, 63, 67, 71, 81, 83, 87, 93, 100, 102], "suppli": [1, 81, 91], "minim": [1, 31], "replic": 1, "problem": [1, 11, 39, 81, 102], "down": [1, 7, 11, 25, 31, 45, 57, 87, 98, 100], "think": 1, "someth": [1, 39, 55], "miss": [1, 3, 5, 47, 102], "well": [1, 3, 11, 53, 63, 77, 79, 81, 98, 102], "anyth": [1, 7, 11, 51, 57, 81], "new": [1, 3, 7, 9, 11, 19, 25, 31, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 69, 71, 77, 79, 81, 85, 87, 91, 93, 100, 102], "document": [1, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 76, 78, 80, 81, 82, 84, 86, 88, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102], "A": [1, 7, 11, 13, 15, 19, 21, 25, 35, 39, 41, 45, 51, 53, 61, 62, 63, 68, 69, 73, 75, 81, 87, 91, 93, 98], "propos": 1, "solv": 1, "case": [1, 7, 11, 21, 25, 41, 43, 45, 51, 53, 59, 81, 87, 91, 93, 98, 102], "demo": [1, 73, 98], "how": [1, 7, 11, 15, 17, 19, 25, 29, 31, 33, 35, 39, 41, 45, 51, 57, 59, 69, 71, 81, 85, 93, 98, 102], "would": [1, 11, 23, 53, 55, 57, 81, 83, 93, 96, 98, 102], "re": [1, 7, 9, 11, 15, 23, 31, 33, 35, 41, 43, 71, 93, 100, 102], "unsur": 1, "worth": 1, "implement": [1, 2, 7, 43, 81, 83, 102], "first": [1, 3, 7, 11, 13, 19, 25, 33, 41, 43, 45, 53, 59, 71, 73, 81, 87, 91, 93, 96, 98, 100, 102], "ask": [1, 7, 11, 91, 102], "channel": [1, 3, 9, 15, 19, 67, 89, 98], "slack": [1, 3, 67, 102], "instead": [1, 2, 3, 7, 11, 15, 19, 23, 25, 27, 31, 35, 39, 51, 53, 57, 61, 69, 87, 93, 102], "directli": [1, 3, 11, 15, 33, 44, 45, 50, 53, 55, 57, 77, 79, 81, 93, 98], "direct": [1, 4, 6, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 43, 44, 46, 48, 50, 52, 54, 56, 58, 59, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 95, 97, 98, 99, 102], "extern": [1, 3, 7, 15, 45, 47, 73, 102], "welcom": [1, 49], "ani": [1, 2, 3, 7, 11, 15, 19, 23, 25, 29, 31, 32, 33, 35, 39, 41, 43, 45, 47, 51, 53, 57, 59, 61, 63, 65, 67, 71, 75, 81, 83, 85, 91, 93, 98, 100, 102], "typo": [1, 102], "howev": [1, 53], "befor": [1, 3, 7, 11, 19, 21, 25, 31, 33, 39, 43, 45, 49, 51, 53, 57, 59, 71, 75, 81, 83, 87, 96, 98, 100, 102], "larg": [1, 7, 23, 47, 51, 102], "advis": [1, 23, 87], "discuss": [1, 3, 11, 91, 102], "beforehand": 1, "correspond": [1, 7, 11, 15, 33, 53, 55, 81, 85], "gh": 1, "write": [1, 3, 7, 15, 25, 43, 45, 47, 57, 59, 69, 81, 93, 100, 102], "pleas": [1, 3, 7, 8, 11, 15, 19, 23, 31, 33, 39, 41, 43, 45, 51, 57, 71, 100, 102], "read": [1, 3, 11, 15, 19, 21, 25, 28, 39, 41, 43, 45, 46, 47, 51, 53, 57, 59, 61, 67, 71, 72, 73, 77, 79, 81, 85, 93, 96, 102], "acknowledg": [1, 3], "our": [1, 3, 57, 63, 98, 102], "extens": [1, 3, 5, 7, 43, 45, 47, 51, 63, 77, 79, 81, 102], "dev": [1, 3, 7, 23, 102], "line": [2, 11, 15, 21, 53, 55, 73, 93, 98, 100, 102], "258": 2, "take": [2, 7, 11, 25, 31, 41, 55, 69, 85, 87, 93, 102], "autocommit": [2, 23, 102], "modul": [2, 3, 11, 17, 23, 31, 55, 102], "651": 2, "too": [2, 11, 25, 102], "compl": 2, "1137": 2, "return": [2, 5, 7, 11, 13, 15, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 55, 57, 59, 61, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "more": [2, 3, 7, 11, 13, 15, 19, 21, 23, 25, 31, 39, 41, 43, 47, 51, 53, 55, 57, 59, 65, 67, 69, 71, 73, 81, 85, 91, 93, 98, 100, 102], "valuabl": 2, "about": [2, 3, 5, 7, 11, 15, 23, 31, 39, 41, 51, 53, 57, 67, 71, 75, 83, 87, 91, 93, 98, 102], "1390": 2, "multipl": [2, 3, 7, 11, 15, 19, 21, 23, 33, 35, 37, 43, 47, 51, 53, 57, 59, 63, 73, 75, 81, 93, 102], "search": [2, 3, 11, 15, 19, 29, 31, 35, 39, 41, 43, 47, 55, 57, 63, 65, 91, 93, 96, 98, 102], "criteria": [2, 19, 31, 41, 53, 71, 93, 102], "same": [2, 7, 11, 15, 19, 21, 25, 33, 39, 43, 45, 49, 51, 53, 59, 61, 67, 75, 81, 87, 93, 98, 102], "time": [2, 3, 5, 7, 11, 12, 13, 15, 19, 29, 31, 39, 41, 45, 47, 51, 60, 61, 71, 81, 83, 85, 87, 91, 96, 98, 102], "identifi": [2, 11, 15, 17, 19, 25, 29, 31, 35, 37, 51, 53, 57, 81, 85, 87, 91, 93, 98, 102], "ONE": 2, "element": [2, 7, 11, 15, 25, 31, 55, 57, 59, 83, 87, 98, 102], "1416": 2, "114": [2, 102], "move": [2, 19, 25, 31, 39, 41, 45, 47, 71, 100, 102], "specif": [2, 3, 7, 11, 13, 15, 17, 21, 23, 25, 33, 35, 39, 41, 57, 59, 67, 71, 75, 77, 79, 83, 98, 102], "adapt": [2, 77, 79, 81, 102], "170": [2, 102], "out": [2, 11, 15, 47, 81, 91, 102], "get": [2, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 69, 71, 73, 75, 77, 79, 81, 85, 87, 93, 96, 98, 100, 102], "actual": [2, 43, 45], "default": [2, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 29, 31, 33, 35, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "307": 2, "run": [2, 3, 7, 11, 15, 19, 23, 29, 31, 33, 39, 43, 45, 47, 71, 75, 77, 79, 81, 83, 87, 93, 98, 100, 102], "mayb": 2, "screenshot": [2, 11, 25, 31, 45, 55, 83, 87, 102], "match": [2, 7, 11, 15, 17, 19, 21, 25, 29, 31, 35, 39, 41, 43, 45, 47, 55, 57, 59, 63, 71, 73, 75, 81, 83, 87, 91, 93, 96, 102], "73": [2, 87], "clamp": 2, "dimens": [2, 7, 17, 19, 93, 102], "106": 2, "enum": [2, 19, 102], "exhaust": 2, "177": 2, "draw": [2, 31, 55], "circl": 2, "546": 2, "exchangelib": [2, 102], "doe": [2, 11, 15, 19, 29, 31, 41, 43, 45, 47, 51, 53, 57, 75, 81, 87, 93, 98, 102], "seem": [2, 43, 102], "straightforward": 2, "958": 2, "2258": 2, "target": [2, 3, 11, 19, 25, 31, 35, 39, 41, 43, 45, 51, 57, 59, 63, 65, 67, 71, 75, 81, 98, 102], "worksheet": [2, 19, 43, 45, 65, 93, 102], "cell": [2, 11, 15, 19, 37, 43, 45, 57, 87, 91, 93, 102], "format": [2, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 29, 31, 33, 35, 37, 41, 43, 45, 47, 51, 59, 69, 81, 85, 87, 91, 93, 100, 102], "overwritten": [2, 19], "574": 2, "glob": [2, 7, 47], "612": 2, "subdirectori": [2, 5, 7, 41, 47], "652": 2, "873": 2, "proper": [2, 15, 63, 102], "date": [2, 3, 7, 12, 13, 19, 41, 45, 55, 85, 91, 96, 102], "883": [2, 102], "892": 2, "friendli": [2, 7, 81, 102], "229": 2, "log": [2, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 65, 69, 73, 77, 79, 81, 82, 83, 87, 91, 93, 98, 102], "row": [2, 7, 11, 15, 19, 23, 37, 43, 45, 57, 65, 87, 91, 93, 98, 102], "debug": [2, 11, 49, 51, 87, 91, 102], "level": [2, 3, 19, 47, 49, 57, 77, 79, 81, 83, 98, 102], "436": 2, "437": 2, "xpath": [2, 11, 59], "syntax": [2, 11, 25, 41, 43, 71, 98, 100, 102], "122": 2, "tokenbackend": 2, "vault": [2, 3, 7, 15, 17, 19, 21, 23, 33, 35, 37, 39, 41, 53, 61, 63, 69, 75, 77, 79, 83, 85, 102], "297": 2, "fail": [2, 3, 7, 11, 23, 47, 49, 51, 53, 57, 75, 81, 83, 91, 102], "defin": [2, 3, 5, 7, 11, 19, 25, 29, 31, 45, 51, 53, 57, 59, 63, 75, 77, 79, 81, 83, 85, 89, 91, 93, 96, 98, 102], "path": [2, 3, 5, 7, 11, 15, 19, 21, 25, 31, 33, 35, 37, 39, 41, 43, 45, 46, 47, 49, 51, 55, 57, 59, 63, 71, 73, 75, 77, 79, 81, 85, 91, 93, 98, 100, 102], "want": [2, 3, 7, 11, 15, 19, 23, 33, 39, 41, 51, 53, 81, 87, 102], "209": 2, "endpoint": [2, 15, 17, 19, 35, 51, 61, 69, 75, 85], "118": 2, "throughout": [2, 102], "218": 2, "consid": [2, 11, 13, 35, 45, 51, 59, 69, 87, 91], "properli": [2, 53, 102], "connect": [2, 11, 15, 23, 31, 39, 41, 43, 49, 51, 63, 65, 71, 85, 87, 100, 102], "676": 2, "result": [2, 3, 7, 13, 15, 17, 19, 21, 23, 31, 33, 35, 37, 39, 41, 43, 47, 51, 53, 55, 59, 63, 65, 69, 71, 73, 75, 81, 85, 91, 93, 96, 98, 100, 102], "object": [2, 3, 7, 11, 13, 15, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 51, 52, 55, 57, 58, 59, 63, 65, 71, 77, 79, 81, 85, 87, 93, 98, 100, 102], "modifi": [2, 5, 11, 15, 25, 41, 47, 51, 53, 77, 78, 79, 81, 91, 93], "here": [2, 7, 35, 39, 45, 51, 59, 91, 98], "41": [2, 87, 102], "cmin764": 2, "16": [2, 3, 7, 9, 13, 45, 61, 73, 87, 98], "aug": 2, "2023": [2, 13, 69], "handles_com_error": 2, "decor": 2, "littl": 2, "collect": [3, 15, 53, 59, 77, 79, 81, 102], "open": [3, 7, 11, 17, 25, 31, 39, 41, 43, 45, 47, 51, 61, 63, 68, 71, 73, 81, 83, 87, 100, 102], "autom": [3, 7, 9, 10, 11, 24, 25, 30, 31, 55, 56, 57, 87, 91, 97, 98, 102], "design": [3, 11, 59, 87, 102], "goal": 3, "activ": [3, 11, 31, 33, 43, 45, 53, 57, 63, 71, 73, 81, 91, 98, 100, 102], "core": [3, 7, 102], "softwar": [3, 41], "learn": [3, 39, 53, 91, 98], "100": [3, 7, 25, 31, 39, 59, 65, 96, 98], "sponsor": 3, "optim": [3, 102], "control": [3, 7, 10, 11, 19, 25, 31, 41, 42, 43, 45, 51, 57, 63, 69, 70, 71, 75, 76, 77, 79, 80, 81, 82, 83, 86, 94, 98, 99, 100, 102], "room": [3, 17, 43, 63, 71, 75, 76, 77, 79, 80, 81, 100, 102], "homepag": 3, "http": [3, 7, 11, 13, 19, 23, 33, 35, 41, 43, 47, 49, 53, 61, 63, 67, 69, 71, 73, 75, 81, 83, 87, 98, 100, 102], "www": [3, 11, 23, 47, 51, 83, 98], "com": [3, 7, 11, 19, 23, 33, 35, 39, 41, 43, 47, 51, 53, 59, 61, 63, 67, 69, 71, 73, 81, 83, 93, 98, 100, 102], "org": [3, 11, 23, 49, 51, 67, 102], "note": [3, 11, 15, 19, 21, 23, 25, 31, 39, 41, 43, 45, 47, 51, 53, 57, 61, 69, 71, 75, 77, 79, 81, 87, 91], "releasenot": 3, "html": [3, 11, 19, 39, 41, 47, 51, 71, 81, 87, 100, 102], "rss": 3, "feed": 3, "xml": [3, 47, 59, 102], "abov": [3, 11, 15, 43, 51, 59, 67, 75, 98, 102], "recognit": [3, 19, 25, 55, 102], "alon": [3, 57], "do": [3, 7, 11, 19, 31, 41, 51, 53, 81, 83, 91, 93, 98, 102], "x": [3, 7, 17, 23, 25, 31, 55, 57, 87, 98, 102], "column": [3, 7, 11, 15, 19, 23, 43, 45, 57, 87, 91, 93, 102], "mean": [3, 5, 7, 9, 11, 13, 15, 19, 23, 29, 31, 39, 69, 98, 102], "pdf": [3, 7, 11, 15, 19, 33, 35, 37, 39, 41, 43, 71, 100, 102], "name": [3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "descript": [3, 7, 11, 15, 23, 25, 53, 57, 59, 69, 85, 91, 93, 102], "archiv": [3, 47, 53, 57, 102], "tar": [3, 4, 5, 102], "zip": [3, 4, 5, 53, 102], "assist": [3, 35, 53, 57, 69, 77, 79, 102], "displai": [3, 6, 7, 11, 19, 31, 43, 45, 57, 63, 71, 91, 98, 100, 102], "selenium": [3, 8, 83, 102], "web": [3, 10, 11, 15, 39, 50, 55, 59, 63, 65, 102], "special": [3, 7, 11, 15, 19, 25, 31, 39, 73, 98], "below": [3, 11, 15, 25, 43, 53, 61, 63, 67, 71, 83, 85, 93, 98, 100, 102], "calendar": [3, 39, 63, 102], "manipul": [3, 12, 15, 28, 43, 44, 45, 46, 54, 55, 58, 59, 92, 93, 102], "cloud": [3, 11, 15, 17, 19, 33, 81, 102], "aw": [3, 102], "amazon": [3, 14, 15, 102], "servic": [3, 11, 14, 15, 16, 17, 18, 19, 32, 33, 34, 35, 36, 37, 39, 43, 61, 64, 65, 66, 67, 69, 71, 73, 100, 102], "azur": [3, 23, 63, 69, 102], "microsoft": [3, 16, 17, 31, 39, 43, 45, 62, 63, 68, 71, 81, 98, 102], "googl": [3, 11, 32, 33, 41, 51, 53, 57, 61], "crypto": [3, 102], "hash": [3, 20, 21, 102], "encrypt": [3, 20, 21, 73, 102], "databas": [3, 15, 25, 53, 77, 79, 85, 102], "interact": [3, 7, 11, 22, 25, 26, 31, 47, 48, 49, 50, 57, 75, 77, 79, 80, 81, 98, 102], "desktop": [3, 11, 27, 29, 31, 42, 43, 55, 57, 70, 71, 86, 97, 98, 99, 100, 102], "cross": [3, 7, 15, 24, 25, 29, 102], "clipboard": [3, 25, 100, 102], "operatingsystem": [3, 41, 47, 102], "o": [3, 28, 57, 61, 71, 75, 87, 102], "documentai": [3, 19, 35, 37, 73, 102], "intellig": [3, 19, 32, 34, 35, 36, 37, 102], "wrapper": [3, 33, 57, 102], "base64ai": [3, 33, 102], "nanonet": [3, 32, 33, 102], "email": [3, 7, 19, 25, 35, 39, 41, 53, 59, 65, 67, 71, 81, 91, 93, 102], "exchang": [3, 41, 61, 63, 102], "mail": [3, 7, 33, 38, 39, 40, 41, 59, 61, 81, 93, 98, 102], "protocol": [3, 11, 38, 41, 51, 102], "imapsmtp": [3, 102], "imap": [3, 40, 41, 102], "smtp": [3, 40, 41, 67, 102], "excel": [3, 7, 31, 51, 65, 71, 93, 102], "filesystem": [3, 15, 49, 102], "ftp": [3, 102], "server": [3, 23, 39, 41, 43, 48, 49, 51, 71, 89, 91, 100, 102], "hubspot": [3, 102], "access": [3, 11, 15, 19, 21, 23, 31, 33, 39, 41, 47, 49, 52, 57, 59, 61, 62, 63, 64, 65, 68, 75, 78, 81, 85, 90, 91, 93, 96, 98, 102], "crm": [3, 52, 53, 102], "data": [3, 7, 11, 15, 19, 21, 23, 33, 35, 43, 45, 47, 51, 52, 53, 57, 59, 61, 63, 65, 73, 75, 81, 85, 91, 92, 93, 102], "imag": [3, 5, 7, 11, 15, 17, 19, 25, 31, 35, 39, 41, 45, 61, 69, 73, 98, 102], "javaaccessbridg": [3, 102], "java": [3, 56, 57, 102], "json": [3, 15, 19, 23, 31, 33, 35, 47, 51, 69, 75, 81, 85, 89, 93, 102], "mfa": [3, 15, 83, 102], "authent": [3, 15, 17, 19, 21, 33, 39, 41, 49, 51, 53, 60, 61, 63, 85, 91, 96, 102], "one": [3, 7, 11, 15, 21, 23, 25, 31, 33, 39, 41, 43, 45, 51, 53, 57, 59, 60, 61, 63, 65, 69, 81, 85, 93, 98, 102], "password": [3, 7, 23, 31, 39, 41, 45, 49, 51, 60, 61, 65, 67, 77, 79, 85, 87, 102], "otp": [3, 60, 61, 102], "oauth2": [3, 19, 39, 41, 61, 63, 102], "notifi": [3, 102], "differ": [3, 7, 11, 13, 15, 17, 19, 23, 25, 33, 35, 37, 39, 51, 57, 59, 63, 66, 67, 75, 81, 85, 87, 91, 93, 98, 102], "openai": [3, 102], "artifici": 3, "outlook": [3, 31, 43, 67, 100, 102], "workitem": [3, 41, 75, 81, 102], "work": [3, 5, 7, 11, 13, 21, 23, 25, 31, 33, 39, 41, 43, 47, 49, 57, 59, 71, 73, 75, 77, 79, 80, 81, 87, 98, 100, 102], "item": [3, 7, 11, 13, 15, 17, 21, 31, 35, 39, 41, 43, 47, 53, 57, 59, 63, 65, 71, 73, 75, 80, 81, 87, 91, 98, 102], "storag": [3, 19, 33, 47, 102], "asset": [3, 76, 102], "salesforc": [3, 102], "sap": [3, 102], "gui": [3, 86, 87], "client": [3, 15, 17, 19, 39, 41, 51, 53, 59, 61, 63, 85, 86, 102], "smartsheet": [3, 102], "sheet": [3, 19, 43, 45, 90, 93, 102], "sort": [3, 13, 43, 45, 59, 71, 92, 93, 102], "filter": [3, 15, 23, 35, 39, 41, 45, 53, 59, 71, 81, 91, 92, 93, 102], "tabular": [3, 15, 45, 92, 93], "execut": [3, 7, 9, 11, 15, 19, 21, 23, 31, 43, 47, 49, 53, 57, 71, 81, 83, 85, 94, 98, 100, 102], "twitter": [3, 102], "interfac": [3, 25, 39, 41, 43, 74, 95], "altern": [3, 21, 43, 53, 69, 77, 79, 81, 87, 98, 102], "word": [3, 11, 15, 31, 37, 41, 43, 51, 71, 98, 100, 102], "moment": [3, 23, 39, 43, 57, 102], "becaus": [3, 11, 39, 57, 83, 93, 98, 102], "post": [3, 51, 61, 85, 89], "need": [3, 7, 11, 15, 17, 19, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 51, 57, 71, 75, 83, 85, 87, 89, 91, 102], "fulli": [3, 11], "minimum": [3, 7, 31, 33, 35, 37, 39, 61, 102], "conda": [3, 7, 15, 25, 69, 98, 102], "yaml": [3, 7, 15, 19, 25, 69, 81, 102], "forg": [3, 9, 15, 98], "depend": [3, 7, 9, 11, 15, 25, 53, 55, 59, 75, 87, 91, 98, 102], "nodej": [3, 9], "14": [3, 9, 87], "2": [3, 7, 9, 11, 13, 15, 17, 19, 23, 31, 35, 41, 45, 49, 51, 53, 59, 63, 69, 75, 81, 83, 87, 91, 93, 98], "pip": [3, 15, 25, 55, 98, 102], "22": [3, 9, 13, 19, 31, 45, 59, 87, 93, 98], "1": [3, 7, 9, 11, 13, 15, 17, 19, 23, 25, 31, 35, 37, 39, 41, 43, 45, 49, 51, 53, 55, 57, 59, 67, 69, 71, 73, 81, 83, 85, 87, 91, 93, 98, 100], "robotframework": [3, 9, 11, 57, 102], "17": [3, 9, 23, 83, 87], "0": [3, 7, 9, 11, 13, 15, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 69, 71, 81, 87, 91, 93, 98, 100], "24": [3, 7, 45, 87], "rccpostinstal": [3, 9], "rfbrowser": [3, 9], "init": [3, 9, 15, 17, 19, 33, 102], "To": [3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 27, 29, 31, 35, 37, 41, 43, 45, 51, 53, 57, 65, 69, 73, 75, 77, 79, 81, 85, 87, 91, 98, 102], "extra": [3, 9, 15, 19, 23, 35, 57, 67, 100, 102], "tesseract": [3, 25], "4": [3, 11, 13, 45, 51, 61, 69, 85, 87, 93, 98], "5": [3, 7, 11, 13, 15, 23, 25, 31, 39, 41, 45, 47, 55, 57, 65, 69, 71, 87, 93, 96, 98], "7": [3, 9, 13, 15, 23, 41, 45, 69, 87, 93, 98], "without": [3, 11, 23, 41, 45, 47, 51, 57, 63, 69, 83, 98, 102], "venv": [3, 55], "m": [3, 5, 29, 31, 39, 45, 55, 63, 87, 98], "bin": [3, 57], "higher": [3, 49, 69, 81], "import": [3, 5, 7, 11, 15, 19, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 53, 55, 57, 59, 61, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "insid": [3, 7, 33, 47, 59, 61, 81, 87, 93, 102], "set": [3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "login": [3, 7, 11, 25, 49, 63, 65, 81, 85, 87], "avail": [3, 7, 9, 11, 15, 19, 25, 31, 37, 43, 45, 53, 57, 63, 65, 75, 81, 83, 85, 91, 93, 98, 102], "text": [3, 7, 11, 15, 17, 19, 21, 23, 25, 27, 31, 35, 37, 41, 43, 45, 47, 57, 63, 69, 73, 81, 87, 89, 91, 93, 96, 100, 102], "id": [3, 7, 11, 15, 19, 23, 29, 31, 33, 35, 37, 39, 41, 53, 57, 59, 61, 63, 65, 67, 69, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 102], "usernam": [3, 7, 23, 29, 31, 39, 41, 51, 67, 77, 79, 81, 85, 91, 93, 96], "lib": [3, 5, 23, 35, 45, 47, 55, 98], "open_available_brows": [3, 11, 102], "input_text": [3, 87], "tutori": 3, "question": [3, 11, 43], "forum": 3, "commun": 3, "your": [3, 7, 11, 15, 17, 21, 25, 39, 41, 45, 53, 57, 69, 81, 85, 91, 98, 102], "fellow": 3, "expert": 3, "found": [3, 11, 25, 31, 35, 37, 39, 41, 43, 51, 53, 55, 57, 61, 63, 85, 87, 91, 93, 98, 100, 102], "critic": [3, 102], "interest": [3, 98], "head": [3, 7, 11, 41, 45, 51, 93, 102], "over": [3, 31, 35, 41, 45, 47, 59, 81, 93, 102], "see": [3, 7, 9, 11, 13, 15, 19, 23, 31, 33, 35, 37, 39, 41, 45, 47, 51, 53, 57, 59, 63, 67, 71, 75, 81, 83, 87, 91, 93, 98, 100, 102], "where": [3, 5, 7, 11, 15, 19, 23, 33, 39, 41, 43, 45, 51, 53, 55, 63, 67, 69, 71, 81, 85, 93, 98, 100, 102], "start": [3, 7, 11, 13, 15, 19, 25, 31, 37, 39, 41, 43, 45, 47, 51, 53, 57, 59, 61, 75, 81, 83, 87, 93, 98, 100, 102], "base": [3, 7, 9, 11, 19, 23, 25, 33, 41, 47, 49, 51, 55, 57, 59, 60, 61, 63, 69, 73, 75, 77, 79, 81, 91, 93, 98, 102], "machin": [3, 7, 29, 31], "templat": [3, 25, 31, 55, 91, 102], "so": [3, 7, 11, 15, 33, 41, 43, 53, 59, 63, 69, 71, 87, 91, 98, 100, 102], "choic": [3, 35], "Not": [3, 11, 47, 53, 102], "recommend": [3, 11, 15, 25, 31, 41, 57, 71, 81, 98, 102], "some": [3, 7, 9, 11, 13, 25, 33, 41, 45, 47, 57, 59, 77, 79, 81, 87, 91, 98, 102], "relat": [3, 11, 35, 37, 59, 61, 75, 102], "At": [3, 23, 31, 39, 43, 57, 98], "11": [3, 19, 31, 43, 71, 87, 100], "might": [3, 11, 15, 41, 43, 45, 57, 59, 98], "caus": [3, 11, 45, 53, 57, 81, 102], "poetri": 3, "invok": 3, "underli": [3, 11, 15, 51, 83, 102], "compil": 3, "build": [3, 7, 102], "script": [3, 19, 23, 25, 59, 87, 98, 102], "purpos": [3, 11, 57, 87], "lint": 3, "test": [3, 11, 19, 43, 51, 57, 69, 71, 85, 87, 98, 102], "publish": 3, "initi": [3, 7, 15, 19, 33, 39, 41, 43, 45, 51, 53, 57, 63, 75, 77, 79, 83, 93, 102], "configur": [3, 11, 23, 33, 39, 41, 43, 53, 61, 63, 71, 75, 77, 79, 81, 89, 91, 100, 102], "config": 3, "virtualenv": 3, "null": [3, 59], "true": [3, 5, 7, 11, 13, 15, 17, 19, 23, 29, 31, 35, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 67, 71, 73, 75, 81, 85, 87, 91, 93, 96, 98, 100, 102], "devpi": 3, "clone": 3, "branch": 3, "switch": [3, 11, 31, 33, 35, 73, 81, 91, 102], "stai": [3, 7, 102], "master": [3, 11, 51], "convent": 3, "hotfix": [3, 102], "its": [3, 7, 9, 11, 13, 15, 19, 25, 29, 31, 35, 41, 43, 47, 49, 51, 53, 63, 65, 81, 91, 93, 98, 102], "directori": [3, 5, 7, 11, 15, 19, 31, 35, 39, 41, 47, 49, 63, 71, 81, 91, 93, 102], "against": [3, 35, 39, 53, 57, 93], "devdata": [3, 47, 81, 102], "env": [3, 11, 31, 81, 102], "environ": [3, 11, 15, 17, 25, 33, 51, 57, 65, 75, 77, 79, 81, 85, 96, 98, 102], "variabl": [3, 5, 7, 13, 15, 17, 19, 33, 35, 39, 41, 43, 45, 49, 51, 53, 57, 59, 65, 67, 71, 75, 77, 79, 81, 83, 85, 91, 96, 102], "whl": 3, "dist": 3, "push": [3, 57], "raw": [3, 7, 21, 23, 33, 35, 37, 41, 51, 57, 81, 91, 102], "url": [3, 7, 11, 15, 19, 33, 35, 37, 39, 41, 43, 47, 51, 61, 63, 67, 69, 75, 77, 79, 81, 91, 102], "anoth": [3, 7, 15, 21, 25, 37, 43, 53, 73, 87, 100], "intern": [3, 7, 11, 15, 25, 33, 87, 102], "instanc": [3, 7, 11, 13, 23, 29, 31, 43, 47, 55, 63, 71, 73, 81, 85, 93, 98, 100, 102], "point": [3, 7, 25, 31, 33, 55, 98, 102], "robot_arg": 3, "target_robot_fil": 3, "report": [3, 41, 53, 73, 81, 91], "none": [3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "outputdir": 3, "output": [3, 7, 11, 17, 19, 21, 35, 41, 45, 47, 49, 51, 59, 81, 83, 93, 98, 102], "logtitl": 3, "target_python_fil": 3, "sure": [3, 11, 41, 43, 51, 71, 87, 98, 100, 102], "guidelin": 3, "It": [3, 7, 11, 13, 25, 31, 37, 41, 45, 47, 53, 55, 57, 59, 61, 63, 73, 81, 83, 87, 91, 93, 102], "like": [3, 5, 7, 11, 15, 31, 33, 35, 41, 45, 51, 53, 59, 63, 81, 87, 91, 93, 96, 98, 102], "ha": [3, 7, 11, 13, 15, 21, 31, 39, 41, 45, 47, 51, 53, 57, 59, 63, 81, 85, 87, 91, 93, 102], "chang": [3, 7, 11, 13, 19, 25, 31, 41, 43, 45, 47, 49, 57, 59, 71, 73, 81, 83, 85, 87, 91, 98, 100, 102], "those": [3, 11, 29, 31, 41, 51, 53, 57, 75, 83, 96], "root": [3, 11, 19, 45, 59, 63, 81, 98], "call": [3, 7, 11, 15, 19, 21, 23, 25, 31, 33, 41, 43, 45, 47, 53, 57, 61, 63, 67, 69, 71, 73, 81, 83, 87, 91, 93, 98, 102], "meta": [3, 15, 17], "built": [3, 15, 47, 49, 51, 53, 57, 76, 81, 102], "docgen": 3, "local": [3, 5, 7, 11, 13, 15, 17, 19, 33, 35, 41, 45, 47, 49, 63, 77, 79, 81, 96, 102], "reflect": [3, 81, 91], "doc": [3, 7, 9, 11, 13, 15, 19, 33, 41, 43, 51, 53, 59, 69, 71, 81, 91, 100, 102], "must": [3, 7, 11, 15, 19, 25, 33, 39, 41, 43, 45, 51, 53, 57, 59, 61, 63, 69, 71, 77, 79, 81, 87, 91, 93, 98, 100, 102], "util": [3, 13, 15, 19, 21, 35, 43, 51, 53, 57, 71, 81, 91, 98, 100, 102], "package_nam": 3, "appropri": [3, 91, 102], "g": [3, 11, 19, 31, 35, 41, 43, 45, 47, 51, 53, 57, 63, 67, 69, 77, 79, 87, 91, 93, 98, 102], "reinstal": 3, "edit": [3, 7], "ad": [3, 5, 7, 11, 13, 19, 23, 25, 41, 45, 51, 53, 57, 59, 61, 63, 81, 85, 87, 98, 102], "repeat": 3, "order": [3, 7, 11, 13, 21, 23, 33, 35, 39, 41, 43, 45, 47, 51, 53, 57, 59, 61, 63, 69, 71, 85, 87, 91, 93, 98, 102], "reset": [3, 13, 91], "updat": [3, 7, 19, 25, 31, 39, 41, 47, 51, 53, 59, 61, 73, 85, 91, 93, 96, 102], "view": [3, 7, 53, 57, 102], "navig": [3, 7, 11, 25, 102], "localhost": 3, "8000": [3, 23], "live": [3, 69], "webpag": [3, 11], "cv": [3, 102], "py": [3, 7, 11, 55, 81], "test_funct": 3, "inv": 3, "testrobot": 3, "r": [3, 7, 35, 43, 87], "robot_nam": 3, "t": [3, 7, 11, 21, 33, 39, 41, 45, 47, 53, 57, 61, 73, 81, 83, 87, 93, 98, 100, 102], "task_nam": 3, "remot": [3, 7, 11, 33, 49, 51], "rst": [3, 11], "been": [3, 7, 13, 15, 19, 21, 23, 31, 41, 43, 47, 51, 53, 57, 81, 85, 87, 91, 102], "merg": [3, 43, 51, 73, 93, 102], "within": [3, 5, 11, 15, 19, 21, 31, 39, 53, 57, 65, 77, 79, 87, 96, 98, 102], "latest": [3, 11, 13, 15, 19, 51, 57, 67, 93], "pyproject": 3, "toml": 3, "command": [3, 11, 21, 23, 25, 31, 49, 98, 102], "lock": [3, 25, 31, 91, 98, 102], "y": [3, 5, 25, 29, 31, 39, 55, 57, 87, 98, 102], "z": [3, 59], "green": [3, 7, 102], "visual": [3, 98, 102], "studio": 3, "editor": [3, 102], "languag": [3, 15, 17, 19, 53, 59, 69, 96, 102], "gitlen": 3, "less": [3, 39, 53, 69, 96, 102], "prone": 3, "term": [3, 11, 59, 67, 98], "apach": 3, "msgraph": [3, 102], "netsuit": [3, 102], "robotloglisten": [3, 102], "todo": 3, "link": [4, 6, 7, 9, 10, 11, 12, 14, 16, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 63, 64, 66, 67, 68, 70, 72, 74, 76, 78, 80, 82, 84, 85, 86, 87, 88, 90, 92, 94, 95, 97, 99], "class": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "folder": [5, 7, 11, 19, 39, 41, 47, 63, 71, 91, 102], "With": [5, 7, 11, 15, 25, 33, 41, 53, 57, 59, 81, 85, 102], "curdir": [5, 11, 15, 19, 23, 35, 37, 39, 41, 55, 57, 71, 75, 93, 100], "recurs": [5, 19, 31, 47, 59, 102], "exclud": [5, 91], "list": [5, 7, 11, 13, 15, 17, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 63, 65, 69, 71, 73, 75, 81, 83, 85, 87, 91, 93, 96, 98, 102], "FOR": [5, 7, 13, 15, 17, 19, 23, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 57, 59, 69, 71, 75, 81, 83, 91, 93, 96, 98], "IN": [5, 7, 13, 15, 17, 19, 23, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 69, 71, 75, 81, 83, 91, 93, 96, 98], "end": [5, 7, 11, 13, 15, 17, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 57, 59, 61, 69, 71, 75, 81, 83, 91, 93, 96, 98, 100, 102], "info": [5, 15, 39, 41, 43, 51, 57, 61, 71, 73, 81, 83, 100, 102], "archive_folder_with_tar": 5, "list_arch": 5, "print": [5, 7, 11, 13, 15, 17, 19, 23, 25, 27, 29, 31, 33, 35, 37, 43, 49, 51, 53, 57, 59, 61, 69, 73, 75, 77, 79, 81, 83, 85, 91, 96, 98, 102], "robot_library_doc_format": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 89, 91, 93, 96, 98, 100], "rest": [5, 7, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 89, 91, 93, 96, 98, 100], "robot_library_scop": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100], "global": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "add_to_arch": 5, "union": [5, 7, 11, 13, 15, 19, 21, 23, 33, 35, 37, 39, 41, 43, 45, 47, 51, 53, 57, 59, 63, 71, 75, 81, 83, 85, 89, 91, 93], "str": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "archive_nam": 5, "paramet": [5, 7, 11, 13, 15, 17, 19, 21, 23, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "filenam": [5, 7, 11, 15, 19, 23, 31, 37, 39, 41, 43, 45, 47, 51, 55, 57, 59, 63, 71, 75, 81, 100, 102], "rel": [5, 7, 11, 25, 47, 102], "exist": [5, 11, 15, 19, 23, 29, 31, 39, 41, 43, 45, 47, 51, 53, 55, 59, 61, 69, 71, 77, 79, 81, 83, 87, 89, 91, 93, 100, 102], "structur": [5, 11, 15, 35, 45, 57, 59, 63, 81, 89, 98, 102], "extrafil": 5, "txt": [5, 7, 15, 19, 31, 47], "myfil": [5, 19, 31], "stat": [5, 29, 31], "png": [5, 7, 11, 15, 19, 25, 31, 33, 35, 39, 41, 45, 47, 55, 67, 69, 71, 102], "gz": 5, "filename1": 5, "filename2": 5, "bool": [5, 7, 11, 13, 15, 19, 23, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 63, 67, 71, 75, 81, 85, 91, 93, 96, 100], "fals": [5, 7, 11, 13, 15, 19, 23, 29, 31, 33, 35, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 63, 67, 71, 75, 81, 85, 87, 91, 93, 96, 98, 100, 102], "sub": [5, 35, 39, 41, 59, 91, 102], "pattern": [5, 7, 15, 41, 47, 59, 81], "type": [5, 7, 11, 15, 19, 23, 25, 31, 35, 37, 39, 45, 51, 57, 59, 63, 65, 75, 81, 85, 87, 91, 93, 96, 98, 102], "determin": [5, 7, 53, 85, 93], "By": [5, 7, 11, 15, 19, 29, 31, 35, 43, 45, 51, 53, 57, 83, 85, 93, 102], "onli": [5, 7, 11, 13, 15, 19, 21, 23, 25, 33, 35, 39, 43, 45, 47, 51, 53, 57, 59, 61, 71, 77, 79, 81, 83, 87, 91, 93, 96, 98, 100, 102], "similarli": 5, "dotfil": 5, "archive_folder_with_zip": 5, "compress": 5, "deflat": 5, "bzip2": 5, "lzma": 5, "mydoc": [5, 19], "robottask": 5, "no_dotfil": 5, "packagelzma": 5, "bzip": 5, "extract_arch": 5, "member": [5, 15, 57], "extract": [5, 35, 41, 73, 102], "filepath": [5, 15, 19, 23, 35, 37, 39, 41, 49, 51, 57, 71, 75, 85], "c": [5, 7, 19, 31, 39, 43, 45, 53, 57, 59, 67, 87, 98], "extract_file_from_arch": 5, "background": [5, 7], "get_archive_info": 5, "dict": [5, 7, 11, 13, 15, 19, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 51, 53, 59, 61, 63, 73, 75, 81, 85, 89, 91, 93, 96, 98, 102], "dictionari": [5, 7, 11, 13, 15, 19, 29, 31, 35, 37, 39, 41, 43, 45, 51, 53, 59, 61, 63, 67, 71, 73, 75, 77, 79, 81, 85, 89, 91, 93, 96, 100, 102], "kei": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 49, 51, 53, 57, 59, 61, 69, 73, 75, 76, 81, 85, 87, 91, 93, 96, 98, 102], "filemod": 5, "mtime": 5, "attribut": [5, 11, 15, 19, 31, 39, 41, 83, 85, 87, 91, 98, 102], "last": [5, 11, 13, 45, 51, 53, 81, 93, 98], "modif": [5, 47], "d": [5, 23, 29, 31, 39, 45, 55, 87], "h": [5, 29, 31, 39, 45, 53, 55], "archiveinfo": 5, "while": [7, 11, 51, 53, 81, 91, 102], "allow": [7, 15, 19, 31, 45, 47, 51, 53, 57, 59, 61, 77, 79, 81, 83, 91, 93, 102], "capabl": [7, 11, 39, 102], "other": [7, 11, 15, 31, 33, 35, 39, 43, 51, 53, 59, 63, 71, 75, 77, 79, 81, 91, 93, 98, 100, 102], "hi": 7, "previou": [7, 11, 13, 25, 51, 57, 61, 71, 81, 93, 98, 102], "desir": [7, 63, 69, 102], "could": [7, 19, 51, 67, 85, 93], "finish": [7, 39, 41, 61, 87], "dynam": [7, 93, 102], "person": [7, 59, 91], "content": [7, 11, 15, 19, 23, 25, 27, 31, 35, 39, 41, 45, 47, 51, 57, 63, 77, 79, 81, 85, 89, 93, 96, 100, 102], "workflow": 7, "dialog": [7, 25, 31, 102], "compos": 7, "fly": 7, "state": [7, 25, 51, 57, 59, 75, 81, 98, 102], "relev": [7, 43, 57, 63, 71, 100, 102], "either": [7, 8, 11, 15, 17, 19, 21, 25, 31, 39, 43, 45, 51, 53, 59, 63, 81, 85, 87, 91, 93, 98, 102], "block": [7, 15, 43, 71, 100, 102], "continu": [7, 31, 47, 69, 102], "dure": [7, 11, 31, 61, 75, 82, 83, 102], "freeli": 7, "field": [7, 15, 25, 31, 33, 35, 37, 41, 43, 53, 57, 59, 63, 71, 73, 85, 87, 91, 93, 102], "successfulli": [7, 11, 102], "submit": [7, 11, 15, 69, 102], "enter": [7, 25, 31, 57, 87, 98], "abort": [7, 49], "close": [7, 11, 23, 31, 43, 45, 49, 51, 53, 57, 65, 71, 83, 85, 98, 100, 102], "forcefulli": 7, "valu": [7, 11, 13, 15, 19, 21, 23, 31, 33, 35, 39, 41, 43, 45, 49, 51, 53, 55, 57, 59, 61, 63, 65, 69, 71, 73, 75, 76, 77, 79, 81, 85, 87, 91, 93, 98, 100, 102], "uniqu": [7, 11, 15, 31, 53, 55, 85, 91, 93, 102], "button": [7, 11, 25, 31, 57, 87, 98, 102], "dotdict": [7, 102], "string": [7, 11, 13, 15, 19, 21, 23, 29, 31, 33, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 69, 71, 73, 75, 81, 85, 87, 89, 91, 93, 96, 98, 100, 102], "checkbox": [7, 11, 87, 91, 102], "boolean": [7, 11, 15, 23, 39, 41, 45, 51, 53, 63, 93, 102], "won": [7, 11, 41, 53, 57, 85, 98, 102], "layout": [7, 102], "bottom": [7, 25, 31, 35, 41, 45, 55, 98, 100, 102], "bit": [7, 21, 25, 41, 57, 98], "margin": [7, 102], "around": [7, 11, 23, 25, 55, 59, 102], "spacious": 7, "overrid": [7, 57, 83, 85, 93, 102], "smaller": [7, 55, 93], "combin": [7, 15, 39, 53, 55, 59, 87, 93, 102], "stack": [7, 102], "posit": [7, 11, 25, 35, 41, 57, 69, 87, 93, 98, 100, 102], "center": [7, 31, 45, 57, 98, 102], "topleft": [7, 31], "bottomright": 7, "coordin": [7, 25, 31, 35, 55, 57, 98, 102], "tupl": [7, 11, 15, 23, 33, 35, 41, 43, 49, 51, 53, 55, 75, 81, 91, 93], "bse": 7, "absolut": [7, 25, 41, 47, 57, 75, 77, 79, 81, 102], "anywher": 7, "color": [7, 11, 45, 55, 102], "pad": [7, 87, 98], "navbar": [7, 102], "bar": [7, 11, 39, 41, 51, 61, 102], "Its": 7, "clear": [7, 19, 27, 45, 53, 57, 81, 93, 98, 102], "success": [7, 11, 23, 39, 41, 49, 55, 67, 71, 85, 87], "icon": [7, 89, 102], "titl": [7, 11, 19, 31, 57, 67, 87, 91, 102], "failur": [7, 11, 49, 51, 53, 81, 83, 102], "enterpris": 7, "label": [7, 15, 19, 25, 37, 41, 53, 87, 102], "troubleshoot": [7, 41, 102], "real": [7, 59, 96], "chonker": 7, "fat": 7, "cat": 7, "jpeg": [7, 15, 35, 37], "height": [7, 17, 25, 57, 98, 102], "1024": [7, 93], "width": [7, 11, 17, 25, 43, 45, 55, 57, 91, 98], "confirm": [7, 11, 41], "warn": [7, 19, 23, 31, 41, 43, 51, 53, 102], "delet": [7, 15, 19, 25, 39, 41, 45, 47, 49, 51, 59, 81, 85, 98, 102], "No": [7, 31, 45, 55, 59], "ye": 7, "IF": [7, 13, 19, 23, 39, 41, 47, 51, 57, 71, 75, 91, 102], "form": [7, 13, 15, 45, 51, 61, 63, 73, 81, 102], "send": [7, 15, 19, 31, 39, 41, 49, 51, 53, 57, 71, 75, 81, 87, 89, 91, 96, 98, 102], "feedback": [7, 11, 53, 102], "address": [7, 11, 15, 19, 23, 33, 35, 39, 41, 43, 49, 53, 57, 59, 61, 71, 81, 93, 102], "placehold": [7, 102], "maximum_row": [7, 102], "def": [7, 23, 25, 29, 31, 41, 45, 47, 55, 61, 71, 73, 75, 77, 79, 81, 83, 98], "success_dialog": 7, "add_icon": 7, "add_head": 7, "add_fil": 7, "run_dialog": [7, 102], "failure_dialog": 7, "add_text": 7, "add_link": 7, "large_dialog": 7, "add_imag": 7, "confirmation_dialog": 7, "add_submit_button": 7, "delete_us": 7, "input_from_dialog": 7, "add_text_input": 7, "send_feedback_messag": 7, "robot_auto_keyword": [7, 13, 33, 53, 57, 75, 81, 91], "add_button": 7, "callabl": [7, 81], "arg": [7, 11, 25, 33, 43, 47, 51, 63, 73, 77, 79, 81, 87, 93, 98], "locat": [7, 11, 15, 19, 23, 25, 31, 33, 41, 43, 45, 55, 57, 63, 65, 87, 91, 96, 98, 102], "verticalloc": 7, "left": [7, 17, 25, 31, 35, 45, 55, 57, 63, 98, 100, 102], "kwarg": [7, 11, 15, 25, 33, 43, 51, 61, 67, 73, 75, 77, 79, 81, 85, 87, 91, 98, 102], "callback": [7, 57, 102], "press": [7, 11, 25, 31, 57, 87, 98, 102], "pass": [7, 15, 23, 25, 33, 35, 39, 41, 43, 47, 49, 51, 53, 57, 59, 61, 63, 67, 73, 83, 85, 87, 91, 93, 98, 102], "app": [7, 11, 19, 31, 39, 41, 43, 53, 57, 61, 63, 71, 85, 96, 98, 100, 102], "second": [7, 11, 13, 15, 19, 29, 31, 39, 41, 45, 47, 49, 51, 53, 57, 59, 71, 87, 93], "let": [7, 59, 67], "infinit": [7, 102], "loop": [7, 11, 57, 83, 102], "first_view": 7, "second_view": 7, "add_checkbox": 7, "indic": [7, 15, 19, 39, 53, 59, 63, 98, 102], "select": [7, 11, 15, 19, 23, 31, 33, 41, 47, 55, 57, 59, 81, 85, 87, 91, 93, 98, 100, 102], "shown": [7, 11, 25, 43, 53, 83, 89, 98], "next": [7, 13, 15, 45, 53, 75, 81, 98, 102], "enabl": [7, 9, 11, 15, 19, 25, 31, 35, 41, 43, 45, 51, 57, 63, 71, 81, 87, 91, 100, 102], "trigger": [7, 75, 81, 102], "select_checkbox": [7, 87], "enable_vault": 7, "add_date_input": 7, "yyyi": [7, 13, 39, 85], "mm": [7, 13, 39, 45, 85], "dd": [7, 13, 39, 45, 85], "otherwis": [7, 11, 13, 15, 23, 29, 31, 39, 41, 45, 81, 98, 102], "birthdat": 7, "1993": 7, "04": 7, "26": [7, 13, 87], "consol": [7, 13, 19, 35, 37, 41, 43, 51, 59, 81, 85, 98], "year": [7, 13, 39, 45], "select_birthd": 7, "add_drop_down": 7, "drop": [7, 23, 31, 102], "menu": [7, 25, 31, 57, 85, 87, 98], "custom": [7, 11, 13, 25, 35, 39, 43, 45, 51, 71, 81, 85, 89, 93, 100, 102], "user_typ": 7, "admin": 7, "select_user_type_from_drop_down": 7, "open_file_button": 7, "generate_order_fil": 7, "add_file_input": 7, "file_typ": [7, 19], "nativ": [7, 53, 102], "up": [7, 11, 15, 25, 33, 47, 51, 53, 55, 87, 93, 98, 100, 102], "home": [7, 25, 41, 93, 98, 102], "restrict": [7, 23, 71, 98, 102], "svg": [7, 67], "limit": [7, 11, 15, 19, 23, 41, 43, 55, 57, 73, 75, 81, 91, 102], "xl": [7, 43, 45, 47, 51, 81, 102], "xlsx": [7, 21, 43, 45, 47, 65, 71, 75, 81, 93, 102], "src": [7, 31, 39, 41], "temp": [7, 47, 63], "everi": [7, 11, 35, 93, 102], "multiple_file_select": 7, "insert": [7, 11, 15, 19, 23, 25, 45, 85, 87, 91, 98, 102], "itself": [7, 11, 35, 53, 98], "unix": [7, 53, 91, 93], "style": [7, 11, 45, 53, 69, 102], "express": [7, 11, 15, 31, 57, 102], "everyth": [7, 47], "singl": [7, 11, 13, 15, 19, 23, 35, 39, 41, 43, 45, 47, 53, 59, 71, 75, 81, 87, 91, 93, 102], "charact": [7, 11, 15, 23, 31, 41, 43, 47, 59, 61, 69, 93, 96, 98, 100, 102], "seq": 7, "escap": [7, 87, 98], "wrap": [7, 33, 61, 62, 63, 68, 73, 87, 102], "squar": [7, 69], "bracket": [7, 87, 98], "between": [7, 13, 15, 31, 33, 39, 51, 53, 55, 59, 69, 93, 98, 102], "order0": 7, "order9": 7, "open_multiple_files_button": 7, "add_flet_icon": 7, "int": [7, 11, 13, 15, 19, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 53, 57, 59, 61, 65, 67, 69, 75, 81, 85, 91, 93, 96, 98, 100, 102], "galleri": [7, 102], "flet": [7, 102], "browser": [7, 47, 83, 98, 102], "lower_cas": 7, "blob": [7, 11], "035b00104f782498d084c2fd7ee96132a542ab7f": 7, "sdk": [7, 31, 91, 98], "flet_cor": 7, "l37": 7, "argb": 7, "rgb": [7, 55], "ffxxyyzz": 7, "xxyyzz": 7, "integ": [7, 13, 15, 23, 49, 51, 53, 57, 75, 91, 93, 102], "icon_nam": 7, "check_circle_round": 7, "ff00ff": 7, "48": [7, 45, 87], "add_custom_icon": 7, "medium": 7, "small": 7, "add_dialog_head": 7, "add_hidden_input": 7, "hidden": [7, 43, 91, 102], "feild": 7, "visibl": [7, 11, 25, 31, 35, 43, 57, 71, 83, 100, 102], "alwai": [7, 31, 45, 51, 57, 81, 93, 102], "static": [7, 35, 51], "togeth": [7, 11, 39, 47, 51, 53, 85, 93, 102], "alreadi": [7, 11, 19, 31, 33, 41, 45, 47, 51, 53, 61, 67, 87, 100, 102], "known": [7, 23, 63, 93, 102], "ensur": [7, 9, 39, 41, 43, 57, 61, 71, 100, 102], "user_id": [7, 19, 53], "get_user_inform": 7, "enter_user_inform": 7, "variant": 7, "short": [7, 59], "statu": [7, 11, 15, 29, 31, 35, 41, 51, 75, 81, 83, 85, 93, 96, 102], "being": [7, 11, 15, 33, 45, 53, 63, 102], "present": [7, 11, 43, 49, 53, 57, 63, 87, 102], "mark": [7, 41, 43, 45, 59, 71, 73, 75, 81, 93, 98, 102], "orang": 7, "triangl": 7, "red": [7, 45, 55, 102], "pixel": [7, 17, 25, 55, 91], "64": [7, 57, 102], "url_or_path": 7, "inlin": [7, 15, 39, 41, 102], "resiz": [7, 45, 102], "fit": 7, "explicitli": [7, 8, 11, 23, 93, 102], "aspect": 7, "ratio": 7, "me": [7, 19, 63, 96], "compani": [7, 11, 31, 53, 81], "logo": [7, 19, 25, 67], "clickabl": [7, 11, 102], "occur": 7, "add_troubleshoot_link": 7, "add_loading_bar": 7, "bar_height": 7, "tooltip": 7, "float": [7, 19, 25, 31, 33, 35, 37, 39, 41, 45, 47, 51, 53, 57, 59, 71, 85, 87], "load": [7, 11, 19, 21, 23, 45, 53, 59, 81, 93, 102], "stroke": 7, "black12": 7, "red500": 7, "mous": [7, 25, 31, 57, 98, 102], "hover": 7, "complet": [7, 11, 15, 33, 45, 47, 49, 51, 53, 61, 63, 69, 73, 98, 102], "indetermin": 7, "progress": [7, 49], "add_loading_spinn": 7, "stroke_width": 7, "spinner": [7, 102], "spin": 7, "endlessi": 7, "add_next_ui_button": 7, "lead": [7, 98, 102], "ui": [7, 25, 43, 53, 55, 56, 57, 71, 91, 98, 100, 102], "retriev": [7, 15, 33, 35, 51, 53, 61, 63, 81, 85, 87, 91, 98, 102], "advanc": [7, 25, 51, 53, 91, 102], "username_1": 7, "show": [7, 39, 43, 55, 57, 59, 71, 75, 100, 102], "detail": [7, 11, 15, 19, 33, 35, 39, 53, 63, 81, 85, 87, 98, 102], "user_data": 7, "phone_numb": 7, "main_form": 7, "customer_detail": 7, "retrieve_user_data": 7, "add_password_input": 7, "hide": [7, 45, 102], "look": [7, 35, 41, 45, 51, 53, 93, 98], "plachold": 7, "change_password": 7, "change_user_password": 7, "add_radio_button": 7, "radio": [7, 11, 87], "select_user_type_from_radio_button": 7, "add_slid": 7, "slider_min": 7, "slider_max": 7, "thumb_text": 7, "decim": [7, 45, 98, 102], "slider": [7, 102], "maximum": [7, 11, 15, 19, 41, 51, 53, 55, 57, 59, 69, 91, 96, 102], "thumb_label": 7, "slide": 7, "thumb": [7, 67], "amount": [7, 11, 19, 45, 49, 81, 93, 102], "specifi": [7, 11, 15, 19, 33, 41, 43, 45, 51, 53, 63, 65, 71, 81, 87, 91, 93, 98, 102], "round": [7, 53, 102], "min": [7, 11, 43, 87], "max": [7, 15, 43, 91, 102], "mani": [7, 11, 15, 19, 29, 31, 39, 51, 53, 59, 77, 79, 91, 93, 102], "percentag": [7, 45], "create_percentage_slid": 7, "prefer": [7, 11, 25, 53, 81, 96, 102], "highlight": [7, 11, 31, 57, 102], "accent": 7, "delete_user_warn": 7, "user_01": 7, "f": [7, 13, 17, 19, 25, 27, 29, 31, 35, 37, 43, 49, 53, 61, 73, 75, 77, 79, 85, 87, 91], "paragraph": [7, 100, 102], "larger": [7, 47, 55, 93, 102], "bodi": [7, 15, 19, 39, 41, 51, 53, 71, 81, 102], "show_error_dialog": 7, "minimum_row": [7, 102], "wasn": [7, 102], "longer": [7, 51, 57, 102], "scrollbar": [7, 87], "appear": [7, 11, 31, 69, 87, 102], "fill": [7, 45, 73], "assign": [7, 93], "doesn": [7, 11, 39, 41, 47, 53, 61, 81, 102], "complic": [7, 59], "sign": [7, 35], "dot": [7, 11, 15, 53, 63], "regex": [7, 59, 98, 102], "And": [7, 31, 39, 41, 51, 83, 98, 102], "regexp": [7, 31, 73], "invalid": [7, 102], "validate_email": 7, "open_dialog": [7, 31], "ask_us": [7, 102], "timeout": [7, 11, 15, 19, 31, 39, 41, 47, 49, 51, 57, 71, 102], "180": 7, "until": [7, 11, 15, 25, 31, 33, 47, 57, 81, 96, 98, 102], "wait": [7, 11, 15, 25, 31, 39, 41, 47, 51, 57, 71, 87, 102], "ask_user_dialog": 7, "clear_dialog": 7, "close_column": 7, "previous": [7, 15, 19, 21, 33, 39, 41, 45, 51, 61, 81, 85, 98, 102], "rais": [7, 11, 19, 31, 39, 43, 45, 47, 49, 51, 55, 57, 59, 61, 65, 81, 85, 93, 100, 102], "layouterror": 7, "recent": [7, 13, 96, 102], "close_contain": 7, "close_navbar": 7, "close_row": 7, "close_stack": 7, "open_column": 7, "doubl": [7, 25, 31, 41, 87, 98, 102], "double_column_layout": 7, "open_row": 7, "open_contain": 7, "background_color": 7, "much": [7, 35, 57, 102], "bgcolor": 7, "place": [7, 21, 53, 57, 93, 102], "center___": 7, "___center": 7, "20": [7, 15, 25, 45, 59, 65, 83, 87, 93], "blue500": 7, "sampl": [7, 47, 69, 93], "padded_element_with_background": 7, "open_navbar": 7, "go": [7, 11, 31, 39, 41, 81, 83, 102], "go_to_start_menu": 7, "assistant_navbar": 7, "side": [7, 11, 25, 57, 98, 102], "side_by_side_el": 7, "open_stack": 7, "overlap": [7, 45], "360": 7, "topright": 7, "right": [7, 25, 31, 35, 45, 55, 57, 61, 87, 98, 100, 102], "absolutely_positioned_el": 7, "refresh_dialog": 7, "typing_extens": 7, "liter": [7, 102], "480": 7, "on_top": 7, "windowloc": [7, 102], "set_titl": 7, "deprec": [8, 11, 27, 31, 39, 51, 53, 81, 102], "alia": [8, 11, 19, 25, 45, 47, 51, 102], "playwright": [8, 102], "upstream": [9, 87], "bundl": [9, 51], "avoid": [9, 35, 63, 81, 98, 102], "conflict": 9, "maxim": [9, 11, 87, 102], "practic": 9, "13": [9, 13, 15, 19, 53, 98], "seleniumlibrari": [10, 11, 83, 102], "instal": [11, 15, 19, 25, 51, 55, 98, 102], "visit": 11, "webdriv": [11, 102], "seleniumhq": 11, "readm": 11, "driver": [11, 102], "chapter": 11, "binari": [11, 19, 47, 49, 51, 102], "toc": 11, "typic": [11, 15, 45, 61], "most": [11, 45, 57, 81, 83, 91, 96, 98], "often": [11, 25, 31], "webel": [11, 102], "strategi": [11, 98, 102], "css": 11, "selector": [11, 25, 102], "implicit": [11, 23, 51, 102], "sens": [11, 102], "context": [11, 13, 15, 87, 91], "click": [11, 25, 31, 57, 87, 98, 102], "href": 11, "normal": [11, 15, 31, 47, 59, 77, 79, 81, 83, 98, 102], "accident": [11, 102], "recogn": [11, 19, 35, 71], "explicit": [11, 19, 35, 61, 87], "foo": [11, 51], "former": 11, "latter": [11, 102], "ident": [11, 15], "robotframeworkuserguid": 11, "space": [11, 25, 31, 39, 61, 98, 102], "ignor": [11, 47, 53, 81, 87, 91, 102], "equival": [11, 25], "tabl": [11, 15, 19, 23, 37, 39, 43, 45, 57, 63, 65, 75, 85, 87, 91, 102], "regist": [11, 39, 53, 63, 83], "tag": [11, 15, 35, 41, 102], "div": 11, "dom": [11, 102], "exact": [11, 15, 29, 31, 43, 102], "partial": [11, 31, 53, 83], "he": [11, 25], "ex": [11, 25, 31, 39, 98], "sizzl": 11, "my_id": 11, "jqueri": 11, "behavior": [11, 51, 63, 69, 102], "necessari": [11, 23, 41, 61, 91], "pro": 11, "con": 11, "simpli": [11, 33], "fast": [11, 31], "stabl": [11, 35], "solut": 11, "h1": [11, 41], "easi": [11, 57], "complex": 11, "approach": [11, 98], "power": [11, 59], "downsid": 11, "prior": [11, 33, 63, 81, 98], "conveni": [11, 102], "construct": [11, 13], "parenthesi": [11, 59, 98, 102], "front": [11, 87], "chain": [11, 15, 25, 33, 98, 102], "two": [11, 15, 17, 39, 45, 53, 75, 77, 79, 85, 93, 102], "greater": [11, 51, 53, 96, 102], "mix": [11, 96], "Or": [11, 85, 91], "although": [11, 102], "abei": 11, "whole": [11, 39, 43, 98, 102], "locator_list": 11, "div_id": 11, "elem": 11, "lookup": [11, 53, 102], "constraint": 11, "getelementbyid": 11, "reimplement": 11, "basic": [11, 19, 25, 39, 51, 57, 59, 63, 102], "refer": [11, 17, 19, 23, 25, 35, 47, 51, 55, 57, 59, 63, 73, 93, 98, 102], "conceptu": 11, "talk": 11, "03_webdriv": 11, "jsp": 11, "independ": 11, "usual": [11, 31, 33, 39, 41, 61, 81], "cooki": [11, 25, 51], "session": [11, 15, 43, 51, 61, 63, 71, 87, 100, 102], "profil": [11, 96, 102], "site": [11, 33, 55, 63, 96], "children": [11, 57, 102], "synonym": 11, "One": [11, 53, 93], "mai": [11, 13, 15, 25, 53, 63, 77, 79, 81, 85, 91], "tab": [11, 25, 87, 93, 98], "pop": [11, 41, 93], "belong": [11, 15, 33, 35, 75], "blank": [11, 45, 53], "demonstr": [11, 87], "browsera": 11, "robocon": 11, "io": [11, 13, 19, 51, 67, 87], "browserb": 11, "third": [11, 45, 93], "goe": [11, 67, 81], "currectli": 11, "delai": [11, 31, 51, 57, 87], "slow": [11, 31], "speed": [11, 31, 55, 57, 87, 91, 102], "long": [11, 23, 31, 39, 41, 53, 61], "event": [11, 15, 25], "alert": [11, 43, 71, 100, 102], "addition": [11, 35], "async": 11, "asynchron": [11, 15, 73, 102], "implicit_wait": 11, "04_webdriver_advanc": 11, "except": [11, 19, 41, 47, 51, 57, 81, 83, 93, 102], "page_load_timeout": 11, "42": [11, 87, 102], "30": [11, 13, 25, 31, 57, 87, 91], "handi": 11, "own": [11, 17, 41, 47, 102], "captur": [11, 55, 83, 102], "run_on_failur": [11, 83, 102], "resourc": [11, 15, 23, 51, 63, 76, 83], "disabl": [11, 39, 51, 81, 83, 87, 102], "noth": [11, 83, 87], "perform": [11, 19, 23, 41, 51, 53, 57, 59, 85, 87, 91, 102], "convers": [11, 69, 102], "hint": [11, 102], "did": 11, "covert": 11, "eventfiringwebdriv": 11, "webdriver_support": 11, "event_firing_webdriv": 11, "extend": [11, 33, 51, 53, 59, 65, 83, 85, 91, 96, 102], "further": [11, 25, 31, 33, 59, 61, 98, 102], "thread": [11, 43], "safe": [11, 23], "mainli": [11, 61, 102], "due": [11, 15, 83, 102], "wiki": [11, 23, 49], "frequent": 11, "q": 11, "plugin": [11, 102], "hack": 11, "prevent": [11, 81, 102], "auto_clos": [11, 102], "evalu": [11, 15, 19, 37, 39, 45, 53, 57, 102], "available_opt": 11, "chrome": [11, 102], "chromiumedg": 11, "edg": [11, 102], "firefox": [11, 102], "firefoxopt": 11, "ie": [11, 41, 71, 83, 98, 102], "safari": 11, "available_servic": 11, "chromedriv": [11, 102], "msedgedriv": 11, "geckodriv": [11, 102], "iedriverserv": 11, "safaridriv": 11, "browser_nam": 11, "ff": 11, "gc": 11, "googlechrom": 11, "headlesschrom": 11, "headless_chrom": 11, "headlessfirefox": 11, "headless_firefox": 11, "internetexplor": 11, "chromium_brows": 11, "msedg": 11, "robot_library_vers": 11, "supported_brows": 11, "add_library_compon": [11, 25, 73, 98], "library_compon": [11, 25, 73, 98], "translat": [11, 19, 25, 45, 73, 98, 102], "translated_kw_nam": [11, 25, 73, 98], "attach_chrome_brows": 11, "port": [11, 23, 41, 49, 67, 102], "digit": [11, 53], "effect": [11, 39, 61], "That": [11, 51], "9222": 11, "clear_all_highlight": 11, "made": [11, 29, 31, 53, 81], "click_button_when_vis": 11, "shadowroot": 11, "onc": [11, 31, 33, 45, 53, 91, 93, 102], "becom": [11, 47, 93], "ctrl": [11, 25, 31, 87, 98], "mybutton": 11, "click_element_if_vis": 11, "click_element_when_click": 11, "timedelta": 11, "readi": [11, 102], "orient": [11, 47, 102], "workaround": [11, 23, 57, 102], "tri": [11, 13, 15, 83, 102], "fallback": [11, 67, 98, 102], "mechan": [11, 51, 102], "durat": [11, 15, 19], "give": [11, 13, 15, 19, 39, 41, 45, 51, 57, 62, 63, 68, 83, 85, 102], "click_element_when_vis": 11, "action_chain": 11, "actionchain": 11, "queue": [11, 15, 81], "alt": [11, 25, 31, 41, 87, 98], "does_alert_contain": 11, "valueerror": [11, 31, 43, 55, 59, 65, 93, 102], "does_alert_not_contain": 11, "unexpect": [11, 102], "does_element_contain": 11, "ignore_cas": [11, 102], "insensit": [11, 25, 102], "spec": 11, "does_frame_contain": 11, "frame": [11, 57], "myfram": 11, "does_location_contain": 11, "does_page_contain": 11, "gmail": [11, 19, 41, 67, 71, 102], "does_page_contain_button": 11, "does_page_contain_checkbox": 11, "random": [11, 19], "does_page_contain_el": 11, "count": [11, 23, 39, 41, 43, 45, 57, 65, 93, 96, 100, 102], "textarea": [11, 57], "does_page_contain_imag": 11, "does_page_contain_link": 11, "does_page_contain_list": 11, "does_page_contain_radio_button": 11, "male": [11, 19], "does_page_contain_textfield": 11, "textfield": [11, 87, 102], "does_table_cell_contain": 11, "begin": [11, 15, 45, 91, 98, 102], "does_table_column_contain": 11, "nokia": [11, 15, 53, 85], "does_table_contain": 11, "februari": 11, "does_table_footer_contain": 11, "footer": [11, 100], "sum": [11, 43], "does_table_header_contain": 11, "header": [11, 35, 37, 41, 43, 45, 51, 75, 93, 100, 102], "month": [11, 13, 45], "does_table_row_contain": 11, "does_textarea_contain": 11, "sincer": 11, "does_textfield_contain": 11, "lname": [11, 75], "properti": [11, 13, 25, 29, 33, 43, 57, 61, 63, 71, 75, 77, 79, 81, 85, 91, 98, 100, 102], "noopenbrows": 11, "execute_cdp": 11, "chromium": [11, 102], "devtool": [11, 102], "chromedevtool": 11, "headless": [11, 102], "param": [11, 15, 19, 23, 51, 53, 102], "userag": 11, "83": [11, 87], "4103": 11, "53": 11, "cdp": [11, 102], "network": 11, "setuseragentoverrid": 11, "failure_occur": 11, "overwrit": [11, 19, 31, 39, 41, 45, 47, 51, 71, 75, 77, 79, 93, 102], "find_el": [11, 31], "parent": [11, 19, 39, 47, 57, 59, 98, 102], "webelememt": 11, "child": [11, 53, 59, 81, 98], "elementnotfound": [11, 57], "mpty": 11, "get_browser_cap": 11, "cap": [11, 25, 98], "get_element_statu": 11, "focus": [11, 57, 98], "get_keyword_argu": [11, 25, 73, 98], "get_keyword_document": [11, 25, 73, 98], "get_keyword_nam": [11, 25, 73, 98], "get_keyword_sourc": [11, 25, 73, 98], "keyword_nam": [11, 25, 73, 98], "get_keyword_tag": [11, 25, 73, 98], "get_keyword_typ": [11, 25, 73, 98], "get_testability_statu": 11, "seleniumtest": [11, 102], "get_webel": 11, "shadow": [11, 47, 102], "mozilla": 11, "en": [11, 13, 15, 19, 41, 43, 49, 51, 67, 71], "u": [11, 15, 19, 43, 71, 98], "highlight_el": [11, 57], "2px": 11, "blue": [11, 102], "outlin": [11, 31], "h2": 11, "input_text_when_element_is_vis": 11, "freetext": 11, "my": [11, 19, 23, 31, 39, 43, 47, 57, 67, 77, 79, 85, 91], "is_alert_pres": 11, "box": [11, 35, 57, 73, 102], "dismiss": [11, 43, 71, 100], "leav": [11, 19, 69, 81], "is_checkbox_select": 11, "tax": 11, "paid": 11, "is_chromium": 11, "is_element_attribute_equal_to": 11, "equal": [11, 21, 31, 39, 51, 53, 57, 59, 93, 102], "is_element_dis": 11, "missing_ok": [11, 47, 81, 102], "is_element_en": [11, 31], "field1": 11, "is_element_focus": 11, "is_element_text": 11, "john": [11, 45, 59, 75, 93], "is_element_vis": [11, 31], "is_list_select": 11, "car": 11, "ford": 11, "is_loc": 11, "is_radio_button_select": 11, "group_nam": 11, "group": [11, 19, 53, 81, 93, 98], "gender": [11, 17, 19], "is_radio_button_set_to": 11, "femal": 11, "is_textarea_valu": 11, "is_textfield_valu": 11, "lastnam": [11, 23, 41, 53], "is_titl": 11, "normalize_opt": 11, "argopt": 11, "use_profil": [11, 102], "browser_select": 11, "profile_nam": 11, "profile_path": 11, "proxi": [11, 51, 102], "user_ag": [11, 102], "download": [11, 15, 19, 39, 49, 51, 63, 75, 81, 91, 102], "sandbox": [11, 85, 102], "attempt": [11, 47, 49, 51, 55, 63, 91, 93, 102], "devic": [11, 15, 61], "forc": [11, 53, 57, 81, 91, 102], "agent": [11, 75, 77, 79], "overridden": [11, 15, 45], "creation": [11, 43, 47, 102], "chromeopt": 11, "add_argu": 11, "incognito": 11, "set_cap": 11, "acceptinsecurecert": 11, "randomli": 11, "pick": [11, 33, 57], "plan": [11, 41], "parallel": 11, "internet": 11, "explor": [11, 31, 57, 98], "mode": [11, 21, 23, 29, 31, 47, 49, 51, 53, 61, 98, 102], "124": 11, "flag": [11, 41, 45, 102], "preserv": [11, 102], "opera": 11, "headlessbrows": 11, "dir": [11, 47, 51], "8888": 11, "darwin": 11, "comma": [11, 19, 41, 59, 81, 91], "pars": [11, 15, 19, 21, 31, 53, 73, 81, 91, 102], "launch": [11, 31, 102], "stop": [11, 25, 93, 98, 102], "were": [11, 17, 31, 39, 45, 59, 63, 71, 98, 102], "slightli": 11, "faster": [11, 55, 102], "benefit": [11, 59, 102], "drawback": 11, "unless": [11, 19, 45, 53, 81, 91], "detect": [11, 15, 17, 19, 23, 33, 35, 41, 102], "rpa_headless_mod": [11, 102], "var": [11, 27, 81, 102], "somewher": 11, "outsid": [11, 51], "respect": [11, 13, 41], "mind": [11, 33, 57, 73, 102], "observ": [11, 98], "user_data_dir": 11, "pair": [11, 15, 45, 51, 55, 81, 102], "open_chrome_brows": [11, 102], "full": [11, 19, 37, 39, 41, 47, 63, 81, 83, 87, 91, 102], "open_headless_chrome_brows": 11, "idx": [11, 83], "open_user_brows": 11, "te": [11, 87], "print_to_pdf": 11, "output_path": [11, 41, 73], "attent": 11, "tot": 11, "printtopdf": 11, "save": [11, 15, 19, 31, 35, 39, 41, 43, 45, 51, 55, 57, 59, 63, 65, 71, 73, 81, 91, 100, 102], "landscap": 11, "displayheaderfoot": 11, "printbackground": 11, "prefercsspages": 11, "register_driv": 11, "webdrivercach": 11, "run_keyword": [11, 25, 73, 98], "timestamp": [11, 53, 55, 91], "img": [11, 39, 41], "NO": [11, 15, 17], "subdir": [11, 19, 31, 47], "loc": 11, "set_download_directori": 11, "download_pdf": 11, "disk": [11, 35, 41, 81, 102], "non": [11, 45, 47, 57, 81, 93, 98, 102], "preview": [11, 35, 102], "viewer": 11, "output_dir": [11, 41, 45, 55, 73, 91, 93], "cdn": 11, "legal": 11, "eula": 11, "v1": 11, "set_element_attribut": 11, "wait_and_click_button": 11, "especi": [13, 39, 98, 102], "busi": [13, 81, 102], "dai": [13, 45, 59, 91, 102], "holidai": [13, 102], "pendulum": 13, "mondai": 13, "fridai": 13, "weekdai": 13, "sundai": 13, "saturdai": 13, "countri": [13, 53, 98], "consider": [13, 102], "english": [13, 102], "add_custom_holidai": 13, "datetim": [13, 29, 31, 53], "calcul": [13, 15, 21, 31, 35, 59, 98, 102], "custom_holidai": 13, "03": 13, "08": 13, "09": 13, "more_holidai": 13, "compare_tim": 13, "time1": 13, "time2": 13, "compar": [13, 45, 59, 93, 102], "comparison": [13, 93, 102], "02": [13, 39, 51], "47": [13, 87], "create_tim": 13, "date_str": 13, "date_format_in": 13, "timezon": 13, "date_format_out": 13, "eustac": 13, "token": [13, 15, 19, 21, 33, 39, 41, 53, 59, 61, 63, 67, 69, 77, 79, 85, 91, 96, 102], "19": [13, 33, 35, 37, 61, 87], "mmm": [13, 45], "yy": [13, 45], "utc": [13, 39], "first_business_day_of_the_month": 13, "first_dai": 13, "2024": 13, "06": [13, 19, 59], "01": [13, 15, 39, 59], "get_iso_calendar": 13, "iso": [13, 102], "week": [13, 102], "iso_c": 13, "iso_year": 13, "iso_week": 13, "iso_weekdai": 13, "is_the_date_business_dai": 13, "rang": [13, 15, 19, 43, 45, 53, 83, 93, 102], "32": [13, 41, 43, 57, 59, 61, 87, 98], "is_business_dai": 13, "fi": [13, 51, 67], "els": [13, 21, 31, 39, 51, 57, 71, 85, 102], "relax": [13, 102], "is_the_date_holidai": 13, "date_in": 13, "is_holidai": 13, "2022": [13, 39, 53, 57], "12": [13, 19, 39, 57, 59, 71, 87, 93], "last_business_day_of_the_month": 13, "last_dai": 13, "29": [13, 87], "reset_custom_holidai": 13, "empti": [13, 19, 31, 39, 41, 45, 47, 57, 63, 69, 71, 75, 81, 87, 93, 102], "return_holidai": 13, "holiday_nam": 13, "return_next_business_dai": 13, "return_format": [13, 39], "origin": [13, 15, 19, 21, 31, 35, 41, 45, 57, 59, 81, 102], "next_busi": 13, "05": [13, 69], "return_previous_business_dai": 13, "prev_busi": 13, "prev": 13, "previous_busi": 13, "set_business_dai": 13, "denot": [13, 53, 98], "4dai": 13, "set_local": 13, "locale_nam": 13, "now": [13, 39, 81, 83, 91, 102], "time_now": 13, "dddd": 13, "mmmm": 13, "juev": 13, "marzo": 13, "thursdai": 13, "march": [13, 53], "sort_list_of_d": 13, "revers": [13, 102], "oldest": 13, "datelist": 13, "07": 13, "31": [13, 39, 87], "35": [13, 87], "Of": [13, 23], "time_differ": 13, "start_dat": 13, "end_dat": 13, "start_timezon": 13, "end_timezon": 13, "end_date_is_lat": 13, "hour": [13, 15, 39, 61, 102], "minut": [13, 15, 39, 87], "diff": [13, 39], "1975": 13, "22t18": 13, "00": [13, 19, 39, 45, 59], "22t22": 13, "45": [13, 87, 102], "time_difference_between_timezon": 13, "america": 13, "new_york": 13, "europ": 13, "helsinki": 13, "time_difference_in_dai": 13, "21": [13, 45, 49, 87], "time_difference_in_hour": 13, "21t22": 13, "22t04": 13, "time_difference_in_minut": 13, "245": [13, 102], "time_difference_in_month": 13, "15": [13, 15, 69, 87, 93], "boston": 13, "region": [15, 17, 19, 25, 33, 55, 98, 102], "eu": [15, 19, 33], "west": 15, "robocorp_vault_nam": [15, 17, 102], "s3": [15, 102], "sq": [15, 102], "textract": [15, 102], "comprehend": [15, 102], "three": [15, 19, 31, 53, 93, 98], "aws_key_id": 15, "aws_kei": 15, "aws_region": [15, 102], "redshift": [15, 102], "author": [15, 33, 35, 37, 39, 41, 53, 61, 63, 65, 69, 85, 96, 102], "cluster": 15, "arn": 15, "serverless": 15, "temporari": [15, 102], "credenti": [15, 19, 41, 53, 65, 75, 96, 102], "permiss": [15, 19, 61, 63, 85], "getclustercredenti": 15, "role": [15, 19, 57, 65, 102], "assumpt": 15, "st": [15, 102], "abl": [15, 33, 57, 102], "assum": [15, 21, 45, 53, 63, 81, 102], "east": 15, "use_robocorp_vault": [15, 17, 19, 102], "vault_nam": [15, 17, 19, 39, 61, 102], "boto3": [15, 102], "plu": [15, 39, 41], "rememb": [15, 100], "bucket_nam": [15, 19], "testbucket12213123123": [15, 19], "upload": [15, 19, 49, 51, 63, 67, 81, 102], "bucket": [15, 19], "setup": [15, 19, 33, 39, 41, 43, 45, 53, 59, 65, 71, 75, 81, 83, 85, 96, 98, 100, 102], "analyze_docu": 15, "image_fil": [15, 17, 19], "json_fil": [15, 19], "model": [15, 33, 35, 37, 69, 91, 102], "analyz": [15, 17, 19, 33, 102], "relationship": [15, 25], "analysi": [15, 19, 102], "textractdocu": 15, "assume_rol": 15, "role_arn": 15, "role_session_nam": 15, "policy_arn": 15, "900": 15, "transitive_tag_kei": 15, "external_id": [15, 65], "serial_numb": 15, "token_cod": 15, "source_ident": 15, "secur": [15, 21, 23, 41, 63, 85], "consist": [15, 102], "account": [15, 19, 25, 39, 41, 53, 61, 63, 65, 67, 69, 71, 85, 91, 102], "accesskeyid": 15, "secretaccesskei": 15, "sessiontoken": 15, "expir": [15, 39, 41, 61], "2015": 15, "assumedroleus": 15, "assumedroleid": 15, "packedpolicys": 15, "123": [15, 59, 91, 98], "sourceident": 15, "iam": 15, "associ": [15, 31, 75], "transit": 15, "subsequ": [15, 91, 98], "administr": 15, "identif": 15, "who": [15, 41, 47], "trust": 15, "princip": 15, "convert_textract_response_to_model": 15, "create_bucket": 15, "acl": 15, "create_queu": 15, "queue_nam": 15, "create_redshift_statement_paramet": 15, "sql": [15, 23, 85, 102], "statement": [15, 23, 45, 102], "produc": [15, 23], "delete_bucket": 15, "delete_fil": 15, "delete_messag": [15, 39, 41], "receipt_handl": 15, "delete_queu": 15, "describe_redshift_t": 15, "schema": [15, 53, 102], "metadata": [15, 17, 25, 39, 41, 47, 53, 61, 63, 85, 91, 102], "notat": [15, 53, 63, 102], "columnlist": 15, "columndefault": 15, "iscasesensit": 15, "iscurr": 15, "issign": 15, "length": [15, 45, 59, 69, 81, 91, 93], "nullabl": 15, "precis": [15, 45], "scale": [15, 45, 57, 98, 102], "schemanam": 15, "tablenam": [15, 23, 43], "typenam": 15, "ommit": 15, "detect_document_text": 15, "detect_ent": 15, "lang": [15, 19, 96], "entiti": [15, 19, 98], "utf": [15, 21, 23, 41, 47, 59, 73, 102], "fewer": 15, "000": [15, 53], "byte": [15, 19, 21, 29, 31, 41, 47, 49, 51, 71, 102], "encod": [15, 19, 21, 23, 35, 41, 47, 51, 59, 73, 93, 102], "detect_senti": 15, "infer": [15, 53], "prevail": 15, "sentiment": [15, 19], "download_fil": 15, "target_directori": 15, "execute_redshift_stat": 15, "statement_nam": 15, "with_ev": 15, "40": [15, 45, 87, 102], "dml": 15, "definit": [15, 57, 63, 91, 102], "ddl": 15, "parameter": [15, 23, 102], "referenc": [15, 102], "implicitli": [15, 81], "simplic": 15, "helper": [15, 19, 33, 35, 37, 51, 63, 102], "natur": [15, 19, 53, 69, 98, 102], "scope": [15, 19, 39, 61, 63, 81, 91, 102], "mytabl": [15, 23], "seattl": 15, "queri": [15, 19, 23, 35, 39, 51, 85, 91, 96, 102], "whether": [15, 19, 31, 45, 51, 53, 69, 87, 91], "eventbridg": 15, "bu": 15, "becuas": 15, "waiter": 15, "execute_redshift_statement_asyncron": 15, "asyncron": 15, "later": [15, 19, 25, 33, 45, 81], "generate_presigned_url": 15, "object_nam": 15, "expires_in": 15, "extra_param": 15, "presign": [15, 102], "3600": 15, "get_cel": 15, "get_document_analysi": 15, "job_id": 15, "max_result": [15, 19, 43, 53], "1000": [15, 53, 69], "next_token": 15, "collect_all_result": 15, "job": 15, "pagin": [15, 65], "jobstatu": 15, "succeed": [15, 41], "aws_key_secret": 15, "jobid": 15, "s3bucket_nam": 15, "invoic": [15, 33, 35, 37, 39, 41, 71, 73, 102], "get_document_text_detect": 15, "get_pages_and_text": 15, "textract_respons": 15, "get_redshift_statement_result": 15, "statement_id": 15, "yet": [15, 31, 43, 67, 98, 102], "retreiv": [15, 53], "get_tabl": 15, "get_word": 15, "init_comprehend_cli": 15, "session_token": 15, "init_redshift_data_cli": 15, "cluster_identifi": 15, "database_us": 15, "secret_arn": 15, "init_s3_cli": 15, "init_sqs_cli": 15, "queue_url": 15, "init_sts_cli": 15, "init_textract_cli": 15, "list_bucket": 15, "list_fil": [15, 49], "jmespath": 15, "list_objects_v2": 15, "awslibrari": 15, "list_redshift_databas": 15, "list_redshift_schema": 15, "schema_pattern": 15, "substr": [15, 102], "_": [15, 91, 98], "list_redshift_t": 15, "table_pattern": 15, "neither": 15, "nor": [15, 98], "logger": 15, "receive_messag": 15, "receiv": [15, 39, 41, 61, 71, 81, 96, 102], "send_messag": [15, 19, 39, 41, 102], "message_attribut": 15, "set_robocorp_vault": [15, 19], "start_document_analysi": 15, "bucket_name_in": 15, "object_name_in": 15, "object_version_in": 15, "bucket_name_out": 15, "prefix_object_out": 15, "textract_output": 15, "start_document_text_detect": 15, "upload_fil": 15, "basenam": 15, "contenttyp": 15, "mybucket": 15, "extraarg": 15, "file1": [15, 19, 81], "file2": [15, 19], "northeurop": 17, "computervis": 17, "comput": [17, 25, 29, 31, 47, 98, 102], "vision": [17, 19, 25, 102], "face": [17, 19, 102], "speech": [17, 19, 102], "textanalyt": 17, "analyt": [17, 102], "subscript": [17, 53], "azure_textanalytics_kei": 17, "azure_subscription_kei": 17, "googlecloud": 17, "image_url": [17, 67], "imagetyp": 17, "visual_featur": 17, "ag": [17, 45, 93], "rectangl": [17, 31, 55, 98, 102], "facerectangl": 17, "init_text_analytics_servic": 17, "init_face_servic": 17, "init_computer_vision_servic": 17, "init_speech_servic": 17, "westeurop": 17, "sentiment_analyz": 17, "wonder": 17, "staff": 17, "detect_fac": 17, "path_to_fil": 17, "face_attribut": 17, "smile": 17, "hair": 17, "facialhair": 17, "emot": 17, "faceattribut": 17, "vision_analyz": 17, "url_to_imag": 17, "text_to_speech": 17, "leverag": 17, "ecosystem": 17, "neural_voice_styl": 17, "cheer": 17, "target_fil": [17, 19, 51, 63, 75], "mp3": [17, 19], "service_account": 19, "vault_secret_kei": 19, "cloud_auth_typ": 19, "serviceaccount": [19, 33], "gcp": 19, "approri": 19, "oauth": [19, 39, 41, 61, 63, 102], "init_vis": 19, "init_text_to_speech": 19, "detect_text": 19, "imagefil": 19, "synthesize_speech": 19, "said": 19, "aloud": 19, "add_attachment_to_messag": 19, "mimemessag": 19, "add_drive_shar": 19, "file_id": 19, "file_dict": 19, "domain": [19, 31, 39, 41, 51, 59, 71, 85, 102], "driverol": 19, "reader": [19, 102], "share_typ": 19, "drivetyp": 19, "notif": [19, 31, 67, 102], "notification_messag": 19, "drive": [19, 35, 53, 63, 102], "notificatin": 19, "permission_id": 19, "okta": 19, "tester": [19, 23], "hello": [19, 41, 67, 71, 81, 98], "review": 19, "writer": 19, "analyze_senti": 19, "text_fil": 19, "texttyp": 19, "plain_text": 19, "annotate_imag": 19, "image_uri": 19, "annot": [19, 102], "uri": [19, 51, 63], "annotate_video": 19, "video_fil": 19, "video_uri": 19, "output_uri": 19, "300": [19, 25, 31, 41, 71], "video": [19, 73, 98, 102], "feature_unspecifi": 19, "unspecifi": [19, 81], "label_detect": 19, "dog": 19, "flower": 19, "shot_change_detect": 19, "shot": 19, "explicit_content_detect": 19, "speech_transcript": 19, "transcript": 19, "text_detect": 19, "ocr": [19, 25, 31, 35, 37, 102], "object_track": 19, "logo_recognit": 19, "videointellig": 19, "movi": 19, "mp4": 19, "movie_annot": 19, "videoannot": 19, "classify_text": 19, "clear_sheet_valu": 19, "spreadsheet_id": 19, "sheet_rang": 19, "spreadsheet": [19, 102], "a1": [19, 43, 45, 102], "c1": 19, "copy_sheet": 19, "source_sheet_nam": 19, "new_sheet_nam": 19, "insertsheetindex": 19, "copi": [19, 27, 31, 43, 45, 47, 57, 93, 98, 100, 102], "zero": [19, 47, 91, 93], "copy_spreadsheet": 19, "target_spreadsheet_id": 19, "source_spreadsheet_id": 19, "another_spreadsheet_id": 19, "create_drive_directori": 19, "parent_fold": [19, 39], "create_messag": 19, "subject": [19, 39, 41, 67, 71], "message_text": 19, "recipi": [19, 39, 41, 71, 102], "plain": 19, "base64url": 19, "create_sheet": [19, 91], "sheet_nam": [19, 45, 91, 102], "create_spreadsheet": 19, "create_storage_bucket": 19, "visionfold": 19, "delete_drive_fil": 19, "multiple_ok": 19, "suppress_error": [19, 41], "Be": [19, 31, 51, 83, 87], "care": [19, 41], "ok": [19, 51], "folder_id": 19, "datafold": 19, "delete_sheet": 19, "sheet1": [19, 43], "delete_storage_bucket": 19, "delete_storage_fil": 19, "detect_docu": 19, "detect_label": 19, "detect_t": 19, "arrang": 19, "download_drive_fil": 19, "2000": [19, 45], "download_storage_fil": 19, "mytestimg": 19, "image1": 19, "test1": 19, "test2": 19, "export_drive_fil": 19, "mimetyp": [19, 102], "export": [19, 43, 93, 100, 102], "face_detect": 19, "generic_spreadsheet_batch_upd": 19, "batch": [19, 75, 102], "googleapi": 19, "dyn": 19, "sheets_v4": 19, "addband": 19, "addchart": 19, "addconditionalformatrul": 19, "adddatasourc": 19, "adddimensiongroup": 19, "addfilterview": 19, "addnamedrang": 19, "addprotectedrang": 19, "addsheet": 19, "addslic": 19, "appendcel": 19, "appenddimens": 19, "autofil": 19, "autoresizedimens": 19, "clearbasicfilt": 19, "copypast": 19, "createdevelopermetadata": 19, "cutpast": 19, "deleteband": 19, "deleteconditionalformatrul": 19, "deletedatasourc": 19, "deletedevelopermetadata": 19, "deletedimens": 19, "deletedimensiongroup": 19, "deletedupl": 19, "deleteembeddedobject": 19, "deletefilterview": 19, "deletenamedrang": 19, "deleteprotectedrang": 19, "deleterang": 19, "deletesheet": 19, "duplicatefilterview": 19, "duplicatesheet": 19, "findreplac": 19, "insertdimens": 19, "insertrang": 19, "mergecel": 19, "movedimens": 19, "pastedata": 19, "randomizerang": 19, "refreshdatasourc": 19, "repeatcel": 19, "setbasicfilt": 19, "setdatavalid": 19, "sortrang": 19, "texttocolumn": 19, "trimwhitespac": 19, "unmergecel": 19, "updateband": 19, "updatebord": 19, "updatecel": 19, "updatechartspec": 19, "updateconditionalformatrul": 19, "updatedatasourc": 19, "updatedevelopermetadata": 19, "updatedimensiongroup": 19, "updatedimensionproperti": 19, "updateembeddedobjectbord": 19, "updateembeddedobjectposit": 19, "updatefilterview": 19, "updatenamedrang": 19, "updateprotectedrang": 19, "updatesheetproperti": 19, "renam": [19, 39, 41, 45, 47, 49, 93, 102], "updateslicerspec": 19, "updatespreadsheetproperti": 19, "sheetid": 19, "333555666": 19, "get_all_sheet_valu": 19, "value_render_opt": 19, "unformatted_valu": 19, "datetime_render_opt": 19, "formatted_str": 19, "repres": [19, 43, 45, 53, 55, 57, 59, 63, 75, 85, 91, 93, 98], "sheet_id": [19, 91], "get_document_ent": 19, "get_document_languag": 19, "get_drive_file_by_id": 19, "get_drive_folder_id": 19, "narrow": 19, "root_id": 19, "get_sheet_by_nam": 19, "get_sheet_formula": 19, "formula": [19, 43, 45, 91, 102], "_description_": 19, "get_sheet_valu": 19, "spreadhsheet": 19, "get_spreadsheet_basic_inform": 19, "get_spreadsheet_detail": 19, "get_storage_bucket": 19, "handle_mimetyp": 19, "parsed_part": 19, "msg": [19, 39, 51], "folder_nam": [19, 39, 41, 71, 102], "init_apps_script": 19, "token_fil": 19, "init_document_ai": 19, "ai": [19, 32, 33, 34, 35, 68, 102], "sa": 19, "init_dr": 19, "init_gmail": 19, "init_natural_languag": 19, "init_sheet": 19, "init_speech_to_text": 19, "init_storag": 19, "init_transl": 19, "project_identifi": 19, "init_video_intellig": 19, "insert_sheet_valu": 19, "major_dimens": 19, "value_input_opt": 19, "user_ent": 19, "aa": [19, 45], "bb": 19, "cc": [19, 39, 41, 71, 102], "b": [19, 45, 59, 85, 87, 98], "list_messag": [19, 39, 41, 102], "label_id": 19, "include_json": 19, "include_spam": 19, "spam": 19, "trash": 19, "mika": [19, 39], "list_processor": 19, "project_id": [19, 33], "processor": 19, "p": [19, 39, 41, 87], "processor_id": 19, "type_": 19, "display_nam": 19, "list_shared_drive_fil": 19, "subfold": [19, 41, 63, 102], "list_storage_bucket": 19, "list_storage_fil": 19, "list_supported_voic": 19, "language_cod": 19, "voic": 19, "load_document_respons": 19, "google_process": 19, "google_doc": 19, "ent": 19, "move_drive_fil": 19, "source_id": 19, "sourcefold": 19, "sourceid": 19, "target_fold": [19, 41, 63, 71], "parse_part": 19, "msg_id": 19, "partit": 19, "process_docu": 19, "file_path": [19, 35, 63], "mime_typ": 19, "mime": 19, "google_project_id": 19, "receipt_processor_id": 19, "mydocu": [19, 39], "recognize_text_from_audio": 19, "audio_fil": 19, "audio_uri": 19, "en_u": 19, "audio_channel_count": 19, "sample_r": 19, "audio": 19, "rate": 19, "hertz": 19, "16000": 19, "remove_all_drive_shar": 19, "owner": [19, 47, 53, 91, 102], "retain": [19, 63], "remove_drive_share_by_criteria": 19, "remove_drive_share_by_permission_id": 19, "sharabl": 19, "vnd": 19, "shareabl": 19, "rename_sheet": 19, "run_script": 19, "script_id": 19, "function_nam": 19, "assertionerror": [19, 100, 102], "thrown": 19, "formid": 19, "aaad4232": 19, "formvalu": 19, "abc21397283712da": 19, "submit_form": 19, "save_document_respons": 19, "101134120147": 19, "receipt_processor": 19, "file_in": 19, "receipt1": 19, "jpg": [19, 35, 37, 47], "receipt": [19, 37], "search_drive_fil": 19, "modifiedtim": 19, "2020": 19, "04t12": 19, "datadirectori": 19, "sender": [19, 39, 41, 71, 89, 102], "sent": [19, 39, 51, 53, 75, 81, 85, 102], "set_audio_typ": 19, "set_headers_to_message_dict": 19, "payload": [19, 75, 81, 102], "message_id": [19, 41], "set_image_typ": 19, "set_list_paramet": 19, "auth_typ": 19, "standard": [19, 53, 59, 93, 98], "synthes": [19, 102], "synchron": 19, "to_a1_not": 19, "column_numb": 19, "row_numb": [19, 91], "to_column_lett": 19, "letter": [19, 45, 102], "source_languag": 19, "target_languag": 19, "de": [19, 59], "update_drive_fil": 19, "updateact": 19, "star": 19, "unstar": 19, "untrash": 19, "update_sheet_valu": 19, "row_data": 19, "33": [19, 87], "44": [19, 87], "a6": 19, "c6": 19, "upload_drive_fil": 19, "make_dir": 19, "file1_id": 19, "file2_id": 19, "newdata": 19, "new_fold": 19, "file3_id": 19, "upload_storage_fil": 19, "target_nam": 19, "encryption_typ": 21, "encryptiontyp": 21, "fernet": 21, "ae": 21, "cbc": 21, "128": 21, "hmac": 21, "sha256": 21, "aes256": [21, 102], "decrypt": [21, 73, 102], "cli": [21, 102], "rgx1eda07yz7ud08chipsunn8vaaurxw0pabsal9zjm": 21, "encryptionkei": 21, "decrypt_fil": 21, "enc": 21, "decrypt_str": 21, "base64": [21, 32, 33, 34, 35, 41, 102], "encrypt_fil": 21, "encrypt_str": 21, "don": [21, 33, 39, 45, 81, 93, 102], "generate_kei": 21, "lost": [21, 53], "recov": 21, "anyon": 21, "gain": [21, 57], "hash_fil": 21, "sha1": 21, "digest": [21, 51], "md5": 21, "uslyrhlbu8nzy29ymzhdupderp4": 21, "hash_str": 21, "use_encryption_kei": 21, "use_encryption_key_from_vault": 21, "cryptokei": 21, "procedur": [23, 102], "random_data": 23, "quot": [23, 39, 41, 53, 102], "exec": 23, "insertjsondatatosamplet": 23, "pep": 23, "0249": 23, "db": 23, "moin": 23, "databaseinterfac": 23, "program": [23, 47, 59], "databaseprogram": 23, "pymysql": [23, 102], "127": [23, 49], "incoming_ord": [23, 85], "filesecret": [23, 77, 79, 85, 102], "get_secret": [23, 33, 35, 37, 39, 53, 61, 69, 75, 77, 79, 85], "databasesecret": 23, "connect_to_databas": [23, 102], "call_stored_procedur": 23, "sanstran": [23, 102], "as_tabl": [23, 85, 102], "transact": [23, 87], "rollback": [23, 102], "turn": 23, "off": [23, 35, 39, 53, 102], "firstparam": 23, "secondparam": 23, "thirdparam": 23, "mystpr": 23, "module_nam": 23, "charset": 23, "config_fil": 23, "cfg": 23, "ssl": [23, 51, 102], "had": [23, 27, 102], "mysql": [23, 102], "ssl_ca": 23, "ssl_cert": 23, "ssl_kei": 23, "client_flag": 23, "hostnam": 23, "3306": 23, "databasenam": 23, "found_row": 23, "digicertglobalrootg2": 23, "crt": 23, "pem": [23, 51], "dbconfig": 23, "azuredb": 23, "connector": [23, 102], "descripton": 23, "mydb": 23, "db_descript": 23, "disconnect_from_databas": 23, "firstnam": [23, 53], "disconnect": 23, "execute_sql_script": 23, "get_number_of_row": 23, "condit": [23, 45, 55, 59, 93], "claus": [23, 85], "column1": [23, 45, 91], "column2": [23, 45, 91], "get_row": [23, 91], "arguement": 23, "arvo": 23, "newvalu": 23, "updatedvalu": 23, "assert": [23, 51, 102], "untrust": 23, "bobbi": 23, "row_count": 23, "ones": [23, 35, 98, 102], "heurist": 23, "fetch": [23, 102], "decid": 23, "stored_procedur": 23, "insert_and_return_nam": 23, "sqlite3": 23, "sqlite": 23, "data1": [23, 93], "1st": 23, "data2": [23, 93], "2nd": [23, 98], "INTO": 23, "set_auto_commit": 23, "locators_path": [25, 98, 102], "keyboard": [25, 31, 98, 102], "emul": [25, 102], "scrape": 25, "graphic": 25, "screen": [25, 31, 55, 61, 87, 96, 98], "offset": [25, 31, 98, 102], "bound": [25, 35], "rectangular": 25, "confid": [25, 35, 102], "divid": [25, 98], "colon": 25, "omit": [25, 51, 73, 91, 98, 102], "50": [25, 39], "robot_root": [25, 71, 81], "200": [25, 51, 55, 93], "sparebin": 25, "enough": [25, 35, 98], "area": [25, 45, 55, 102], "600": 25, "400": [25, 55], "disappear": 25, "truth": 25, "websit": [25, 83], "vscode": [25, 77, 79, 81, 98, 102], "craft": 25, "shortcut": 25, "underscor": 25, "page_down": 25, "shift": [25, 87, 98], "shift_l": 25, "shift_r": 25, "ctrl_l": 25, "ctrl_r": 25, "alt_l": 25, "alt_r": 25, "alt_gr": 25, "altgr": 25, "cmd": 25, "super": 25, "cmd_l": 25, "cmd_r": 25, "arrow": [25, 98], "backspac": [25, 87, 98], "esc": [25, 87, 98], "page_up": 25, "caps_lock": 25, "f1": [25, 87, 98, 102], "f20": [25, 98], "undefin": 25, "num_lock": 25, "num": [25, 45, 98], "paus": [25, 98], "break": [25, 98, 102], "print_screen": 25, "scroll_lock": 25, "scroll": [25, 87, 98], "rule": 25, "appli": [25, 39, 53, 59, 81, 91, 93, 102], "left_click": 25, "double_click": 25, "triple_click": 25, "tripl": 25, "right_click": 25, "middl": [25, 31, 98, 102], "erp_client": 25, "write_entry_in_account": 25, "open_appl": [25, 31, 43, 71, 100], "type_text": [25, 57, 102], "press_kei": [25, 57], "input_label": 25, "write_to_field": 25, "move_mous": 25, "click_new": 25, "wait_for_el": [25, 31], "anchor": [25, 98, 102], "500": [25, 87, 96, 102], "type_not": 25, "click_with_offset": 25, "past": [27, 57, 98, 100, 102], "clip": 27, "copy_to_clipboard": 27, "paste_from_clipboard": [27, 100], "clear_clipboard": 27, "boot_tim": 29, "boot": [29, 31], "as_datetim": [29, 31], "memori": [29, 31, 45, 51, 53, 59, 91, 102], "get_computer_inform": 29, "op": 29, "get_boot_tim": [29, 31], "get_machine_nam": [29, 31], "get_usernam": [29, 31], "get_memory_stat": [29, 31], "__name__": [29, 31, 75], "__main__": [29, 31, 75], "boot_time_in_seconds_from_epoch": [29, 31], "epoch": [29, 31, 53], "datetime_format": [29, 31], "boottim": [29, 31], "mem": [29, 31], "kill_process": [29, 31], "process_nam": [29, 31, 75], "kill": [29, 31, 102], "succe": [29, 31], "calc": [29, 31, 45, 98], "strict": [29, 31, 57, 93, 102], "kill_process_by_pid": [29, 31], "pid": [29, 31, 57, 102], "process_exist": [29, 31], "inclus": [29, 31, 93], "process_id_exist": [29, 31], "4567": [29, 31], "put_system_to_sleep": [29, 31], "put": [29, 31, 51, 93], "sleep": [29, 31, 51, 83, 98], "backend": [31, 63, 102], "uia": [31, 57], "dispatch": 31, "offic": [31, 43, 71, 102], "pywinauto": 31, "investig": 31, "get_windows_el": 31, "class_nam": [31, 98, 102], "control_typ": [31, 98, 102], "automation_id": [31, 98, 102], "send_kei": [31, 98], "type_kei": 31, "faq": [31, 43, 71, 100, 102], "attributeerror": [31, 39], "win32com": 31, "gen_pi": 31, "00020813": 31, "0000": 31, "c000": 31, "000000000046x0x1x9": 31, "clsidtoclassmap": 31, "powershel": 31, "localappdatatempgen_pi": 31, "suit": [31, 59, 71, 81, 100], "teardown": [31, 43, 45, 71, 83, 98, 100, 102], "rich": 31, "calculatorresult": [31, 98], "As": [31, 41, 45, 51, 71, 85, 91, 102], "win": [31, 98], "open_calcul": 31, "open_from_search": 31, "get_window_el": 31, "make_calcul": 31, "get_element_rich_text": 31, "strip": [31, 102], "exp": 31, "close_all_appl": 31, "calculate_rectangle_cent": 31, "rect": 31, "click_typ": [31, 57, 87], "horizont": [31, 45, 57, 98, 100], "vertic": [31, 45, 57, 98, 100], "450": 31, "notepad": [31, 102], "untitl": 31, "connect_by_handl": 31, "windowtitl": [31, 102], "existing_app": 31, "parse_el": 31, "appid": [31, 65], "88112": 31, "connect_by_pid": 31, "app_pid": 31, "3231": 31, "drag_and_drop": [31, 102], "src_locat": 31, "target_loc": 31, "handle_ctrl_kei": 31, "drop_delai": 31, "drag": [31, 102], "app1": 31, "vk_space": 31, "workfil": 31, "movethes": 31, "app2": 31, "wordpad": 31, "testfile_": 31, "search_criteria": 31, "get_app": 31, "app_id": 31, "active_appl": 31, "appdetail": 31, "get_dialog_rectangl": 31, "as_dict": 31, "coord": [31, 35], "get_el": [31, 57, 98], "reopen": 31, "get_element_cent": 31, "get_element_rectangl": 31, "rich_text": 31, "get_open_appl": 31, "app3": 31, "get_spaced_str": 31, "replac": [31, 41, 43, 47, 51, 59, 71, 77, 79, 81, 93, 100, 102], "bond": 31, "get_text": 31, "Into": [31, 102], "55": 31, "val": [31, 35, 43], "element_json": 31, "descend": [31, 39, 43, 59, 93], "get_window_list": 31, "control_id": 31, "is_act": [31, 102], "keyboard_focu": [31, 102], "is_element_match": 31, "itemdict": 31, "wildcard": [31, 43, 59, 81, 102], "reg": 31, "lock_screen": 31, "log_in": 31, "mynam": 31, "mypassword": 31, "menu_select": 31, "menuitem": [31, 57], "minimize_dialog": 31, "mouse_click": 31, "off_x": 31, "off_i": 31, "ctype": 31, "focu": [31, 53, 57, 87, 102], "toler": [31, 55], "corner": [31, 35, 55, 93], "myimag": [31, 39], "trickycheckbox": 31, "mouse_click_coord": 31, "delay_tim": 31, "mouse_click_imag": 31, "powerpoint": 31, "open_execut": 31, "work_dir": 31, "open_fil": [31, 100], "open_using_run_dialog": 31, "quit_appl": [31, 43, 71, 100, 102], "quit": [31, 43, 49, 71, 98, 100, 102], "application_id": 31, "f4": [31, 87, 98, 102], "refresh_window": 31, "restore_dialog": 31, "restor": [31, 83, 102], "send_keys_to_input": 31, "keys_to_typ": 31, "with_ent": 31, "send_delai": 31, "enter_delai": 31, "jame": 31, "THE": 31, "set_automation_spe": 31, "set_windows_backend": 31, "supported_backend": 31, "win32": 31, "switch_to_appl": 31, "type_into": 31, "empty_field": [31, 102], "use_refresh": 31, "interv": [31, 39, 41, 71], "elementnotfounderror": 31, "listbox": 31, "popup": [31, 43, 71, 100], "poll": [31, 47], "idp": [32, 34, 35, 36, 37, 102], "scan": [33, 35, 73], "facad": 33, "engin": [33, 87, 91, 102], "predict": [33, 35, 37, 102], "matter": [33, 102], "particular": 33, "jump": 33, "document_ai": 33, "858e4b37": 33, "6679": 33, "4552": 33, "9481": 33, "d5497dfc0b4a": 33, "enginenam": 33, "lib_docai": 33, "init_engin": 33, "df1d166771005ff4": 33, "agenc": 33, "347912": 33, "get_result": 33, "hashabl": [33, 35, 37, 59], "obtain": [33, 39, 41, 53, 57, 61, 63, 69, 91, 102], "again": [33, 81, 91], "final": [33, 39, 41, 45, 53, 61, 81, 98, 102], "split": [33, 59, 73, 102], "just": [33, 69, 102], "privat": [33, 49, 53, 102], "resolut": [33, 102], "isn": [33, 61, 102], "hold": [33, 81, 98], "ll": [33, 53], "absenc": [33, 59, 98, 102], "mail_apikei": 33, "mandatori": [33, 102], "guess": 33, "financ": [33, 35], "switch_engin": 33, "choos": 33, "auth": [35, 37, 39, 51, 53, 59, 61, 85, 102], "apikei": [35, 37, 75], "model_typ": [35, 37], "usa": [35, 53], "join": [35, 37, 47, 53, 67, 71, 75], "baselib": [35, 69], "set_author": [35, 37], "scan_document_fil": 35, "prop": 35, "base_url": 35, "filter_matching_signatur": 35, "match_respons": 35, "confidence_threshold": 35, "similarity_threshold": 35, "signatur": [35, 102], "threshold": 35, "simplifi": [35, 59, 102], "enclos": [35, 39, 102], "portion": [35, 47, 63], "score": 35, "crop": [35, 55, 102], "candid": 35, "alik": [35, 102], "discard": [35, 81, 93], "fraudul": 35, "sig": 35, "get_fields_from_prediction_result": [35, 37], "get_matching_signatur": 35, "reference_imag": 35, "query_imag": 35, "geometri": 35, "simpler": 35, "licens": 35, "card": 35, "contract": 35, "bank": 35, "reveal": 35, "resembl": 35, "ref_imag": 35, "get_signature_imag": 35, "cut": 35, "decod": [35, 41, 47, 102], "numer": [35, 53, 59, 98, 102], "along": 35, "ref_sig": 35, "qry_sig": 35, "get_user_data": 35, "credit": 35, "remain": [35, 53, 61, 93], "givennam": 35, "familynam": 35, "hasworkemail": 35, "companynam": 35, "numberofcredit": 35, "numberofpag": 35, "numberofupload": 35, "numberofcreditsspentondocu": 35, "numberofcreditsspentonfacedetect": 35, "numberofcreditsspentonfacerecognit": 35, "hasactiveawscontract": 35, "subscriptiontyp": 35, "subscriptionperiod": 35, "ccemail": 35, "remainingcredit": 35, "userdata": 35, "still": [35, 43, 51, 57, 71, 81, 100, 102], "mock": 35, "img_8277": [35, 37], "1120": 35, "scan_document_url": 35, "api_email": 35, "api_kei": [35, 53, 69], "eckero": 37, "ocr_text": 37, "nanolib": 37, "predict_fil": 37, "file_to_scan": 37, "get_tables_from_prediction_result": 37, "rpatabl": 37, "create_t": [37, 43, 93], "get_all_model": 37, "model_id": 37, "ocr_fulltext": 37, "fulltext": 37, "pagenum": 37, "enumer": [37, 63], "pagedata": 37, "raw_text": 37, "page_data": 37, "categor": 37, "docu": 37, "vault_token_kei": [39, 102], "tenant": [39, 41, 63, 102], "ew": 39, "articl": [39, 59, 102], "email_oauth_microsoft": 39, "ztzvn": 39, "onmicrosoft": 39, "account_nam": [39, 41, 71, 85], "recipient_address": [39, 41], "is_oauth": [39, 41, 102], "flow": [39, 41, 61, 63, 102], "client_id": [39, 41, 61, 63], "client_secret": [39, 41, 61, 63], "refresh": [39, 41, 53, 57, 61, 63, 91, 98, 102], "br": 39, "email_address": 39, "bcc": [39, 41, 71, 102], "save_dir": [39, 102], "savedir": 39, "inbox": [39, 41, 71], "sub1": 39, "criterion": [39, 41, 71, 102], "savedir2": 39, "purchas": [39, 57], "sub2": 39, "ex_account": 39, "forget": [39, 45, 102], "subject_contain": 39, "body_contain": 39, "sender_contain": [39, 102], "categori": 39, "category_contain": 39, "timeformat": 39, "25": [39, 45, 87], "2021": 39, "23": [39, 59, 87], "to_protect": [39, 41], "get_oauth_token": [39, 41, 61, 83], "refresh_oauth_token": [39, 41, 61, 63, 83], "autodiscov": [39, 102], "access_typ": [39, 61, 102], "accesstyp": 39, "deleg": [39, 102], "primary_smtp_address": 39, "skip": [39, 87, 102], "imperson": [39, 91, 102], "expiri": 39, "create_fold": [39, 41], "delete_fold": [39, 41], "empty_fold": 39, "delete_sub_fold": 39, "forward_messag": 39, "forward": [39, 98, 102], "generate_oauth_url": [39, 41, 61], "sensit": [39, 41, 43, 53, 61, 102], "auth_url": [39, 41, 61], "810482312368": [39, 41, 61], "19htmcgcj": [39, 41, 61], "googleusercont": [39, 41, 61], "response_url": [39, 41, 61], "gocspx": [39, 41, 61], "mqzaw89": [39, 41, 61], "resp_url": [39, 41, 61], "redirect": [39, 41, 51, 61, 63], "items_onli": [39, 102], "list_unread_messag": 39, "unread": [39, 41, 71, 102], "move_messag": [39, 41], "changekei": 39, "priority_account": 39, "prioriti": [39, 71], "1h": [39, 41, 61], "never": [39, 41, 61], "revok": [39, 41, 61], "rename_fold": [39, 41], "oldnam": [39, 41], "newnam": [39, 41], "save_attach": [39, 41, 71], "attachments_from_eml": 39, "eml": [39, 41, 102], "robot_artifact": [39, 75], "save_messag": [39, 41], "reply_to": [39, 41, 71, 102], "repli": [39, 41, 71, 102], "send_reply_messag": 39, "reply_al": 39, "verifi": [39, 51, 53, 55, 98, 102], "hh": 39, "datetime_receiv": 39, "came": 39, "total": [39, 41, 43, 71, 83, 102], "agre": 39, "wait_for_messag": [39, 41], "arriv": [39, 41, 71], "AS": [39, 81, 100], "OF": 39, "smtp_server": 41, "smtp_port": [41, 102], "587": [41, 67, 102], "imap_serv": 41, "imap_port": [41, 102], "993": 41, "oauthprovid": 41, "answer": 41, "185833": 41, "hl": 41, "xoauth2": [41, 102], "highli": [41, 102], "mistak": 41, "gmail_account": 41, "gmail_password": 41, "app_password": 41, "body_img1": 41, "imagedir": 41, "approv": [41, 71, 91], "body_img2": 41, "email_bodi": 41, "authorize_imap": 41, "authorize_smtp": 41, "set_credenti": [41, 75], "generate_oauth_str": 41, "add_gmail_label": 41, "source_fold": [41, 71], "customer1": 41, "wip": 41, "customerfold": 41, "Will": [41, 45, 59, 87, 102], "convert_eml_file_into_messag": 41, "eml_filepath": 41, "save_attachments_directori": 41, "body_text": 41, "body_html": 41, "aboutth": 41, "exactli": [41, 57], "greet": 41, "do_message_act": 41, "msg_copi": 41, "msg_delet": 41, "msg_flag": 41, "msg_unflag": 41, "msg_read": 41, "msg_unread": 41, "msg_save": 41, "msg_attachment_sav": 41, "glabel_add": 41, "glabel_remov": 41, "actions_don": 41, "message_count": 41, "uid": [41, 102], "xxx": 41, "email_to_docu": 41, "input_sourc": 41, "binaryio": 41, "docx": [41, 100, 102], "mail_fil": 41, "pathlib": 41, "lib_work": 41, "lib_mail": 41, "convert_email_to_docx": 41, "get_input_work_item": [41, 81], "get_work_item_fil": [41, 81], "flag_messag": 41, "unflag": [41, 102], "oftot": 41, "access_token": [41, 53, 91, 96], "pack": 41, "legaci": [41, 43, 45, 102], "get_decoded_email_bodi": 41, "html_first": 41, "imaplib": 41, "printabl": 41, "latin": 41, "priorit": 41, "unicod": [41, 98, 102], "tell": 41, "get_folder_list": 41, "readonli": [41, 102], "deliv": 41, "mark_as_read": [41, 71], "mark_as_unread": 41, "yyi": 41, "move_messages_by_id": 41, "use_gmail_search": 41, "rfc822msgid": 41, "remove_gmail_label": 41, "unlabel": [41, 53], "silenc": 41, "userdir": 41, "select_fold": 41, "attachment_posit": [41, 102], "attachmentposit": 41, "in_reply_to": [41, 102], "return_path": [41, 102], "message_id_for_reply_to": 41, "bounc": 41, "tend": 41, "need_to_know": 41, "hidden_copi": 41, "send_smtp_hello": 41, "unflag_messag": 41, "mailbox": [41, 63, 71], "workbook": [43, 45, 65, 81, 102], "sheetnam": [43, 91, 102], "stuff": [43, 85], "macro": [43, 45, 102], "orders_with_macro": 43, "xlsm": 43, "commandbutton1_click": 43, "open_workbook": [43, 45, 102], "set_active_worksheet": [43, 45], "write_to_cel": 43, "save_excel": 43, "caveat": [43, 71, 98, 100], "autoexit": [43, 71, 100, 102], "self": [43, 71, 83, 100], "worker": [43, 71, 100, 102], "rdp": [43, 71, 100], "tick": [43, 71, 100, 102], "encount": [43, 71, 81, 98, 100], "potenti": [43, 55, 71, 100], "unattend": [43, 61, 71, 75, 81, 100, 102], "2016": [43, 71, 100], "app_dispatch": [43, 71, 100], "add_new_sheet": 43, "create_workbook": [43, 45], "add_new_workbook": 43, "close_docu": [43, 71, 100], "save_chang": [43, 71, 100], "create_pivot_field": 43, "data_column": 43, "numberformat": 43, "pivotfield": 43, "pivot": [43, 102], "distinct": 43, "resolv": [43, 47, 98, 102], "regard": [43, 81, 102], "field_count": 43, "price": [43, 59, 85, 93], "field_avg": 43, "averag": 43, "field_sum": 43, "field_max": 43, "create_pivot_t": 43, "source_worksheet": 43, "pivot_worksheet": 43, "sort_field": 43, "sort_direct": 43, "data_rang": 43, "pivot_nam": 43, "pivottable1": 43, "collapse_row": 43, "show_grand_tot": 43, "product": [43, 53, 85, 93], "expense_typ": 43, "pivott": 43, "r5c5": 43, "r1c1": 43, "numb": 43, "ascend": [43, 59, 71, 93], "collaps": 43, "grand": 43, "table_nam": [43, 45], "table_rang": 43, "export_as_pdf": 43, "pdf_filenam": 43, "excel_filenam": 43, "search_str": [43, 63], "search_rang": 43, "search_ord": 43, "searchord": 43, "match_cas": 43, "search_typ": [43, 102], "search_aft": 43, "asterisk": 43, "seri": 43, "145": 43, "ip": 43, "e1": 43, "e9999": 43, "addr": 43, "192": 43, "168": 43, "borderaround": 43, "a9999": 43, "new_valu": [43, 71, 100], "comment": [43, 91], "find_first_available_cel": 43, "free": [43, 53, 102], "find_first_available_row": 43, "get_pivot_t": 43, "pivot_table_nam": 43, "as_list": [43, 93], "pivot_t": 43, "tbl_name": 43, "tbl_list": 43, "get_rang": 43, "b2": [43, 45], "e4": 43, "c4": 43, "d4": [43, 45], "destin": [43, 47, 63, 81], "e5": 43, "e10": [43, 45], "a4": 43, "list_tabl": 43, "merge_rang": 43, "initial_rang": 43, "display_alert": [43, 71, 100], "read_from_cel": 43, "remove_hidden_columns_and_row": 43, "run_macro": 43, "macro_nam": 43, "save_excel_a": 43, "autofit": 43, "file_format": 43, "vba": [43, 71], "xlfileformat": 43, "modern": [43, 45, 59, 102], "97": [43, 87, 102], "56": 43, "sheetnumb": 43, "set_object_properti": [43, 71, 100], "object_inst": [43, 71, 100], "property_nam": [43, 53, 71, 100], "132": [43, 71, 100], "5511": [43, 71, 100], "unmerge_rang": 43, "unmerg": [43, 102], "write_data_to_rang": 43, "target_rang": 43, "log_warn": 43, "semicolon": 43, "read_table_from_csv": [43, 93], "csv": [43, 71, 75, 81, 93, 102], "xslx": [43, 71], "a2": [43, 45], "p100": 43, "input_t": 43, "l21": 43, "c2": 43, "e21": 43, "g2": 43, "i21": 43, "suppress": [43, 102], "number_format": [43, 45], "protect": [45, 83, 102], "iter": [45, 47, 75, 93, 102], "orders_fil": 45, "excel_fil": 45, "my_new_excel": 45, "append": [45, 47, 51, 59, 65, 91, 93, 102], "read_excel_worksheet": 45, "read_worksheet": 45, "close_workbook": 45, "append_rows_to_worksheet": 45, "formatting_as_empti": [45, 102], "sara": 45, "beth": 45, "ami": [45, 93], "table_ag": 45, "57": 45, "save_workbook": 45, "auto_size_column": 45, "start_column": 45, "end_column": 45, "font": [45, 102], "auto_s": 45, "clear_cell_rang": 45, "range_str": 45, "a9": 45, "a100": 45, "b50": 45, "copy_cell_valu": 45, "source_rang": 45, "g10": 45, "fmt": 45, "xlsworkbook": 45, "xlsxworkbook": 45, "newli": [45, 53, 63, 81, 102], "upon": 45, "mycustomsheetnam": 45, "create_worksheet": 45, "exist_ok": [45, 47, 102], "dictonari": 45, "employees_row1": 45, "58": [45, 93], "employees_row2": 45, "employees_row3": 45, "adam": [45, 93], "67": [45, 93], "worksheet_data": 45, "worksheet_data_row1": 45, "worksheet_data_row2": 45, "worksheet_data_row3": 45, "employe": [45, 93], "workseet": 45, "employees_nam": 45, "employees_ag": 45, "worksheet_data_nam": 45, "worksheet_data_ag": 45, "delete_column": 45, "delete_row": 45, "jj": 45, "find_empty_row": 45, "get_active_worksheet": 45, "active_worksheet": 45, "get_cell_valu": [45, 87], "column3": 45, "get_worksheet_valu": 45, "hide_column": 45, "insert_columns_aft": 45, "insert_columns_befor": 45, "insert_image_to_worksheet": 45, "factor": [45, 57, 60, 102], "last_row": 45, "insert_rows_aft": 45, "insert_rows_befor": 45, "list_worksheet": 45, "declar": [45, 85], "workset": 45, "move_rang": 45, "openpyxl": 45, "neg": [45, 93, 100], "e2": 45, "data_onli": [45, 102], "read_onli": [45, 100, 102], "read_worksheet_as_t": 45, "trim": [45, 93, 102], "remove_worksheet": 45, "rename_worksheet": 45, "src_name": 45, "dst_name": 45, "futur": [45, 53, 63, 81, 98], "cannot": [45, 53, 59, 81, 87, 91, 102], "vice": 45, "versa": 45, "per": [45, 53, 91, 93], "basi": [45, 69], "bege": 45, "set_cell_format": 45, "themselv": [45, 98], "libreoffic": 45, "aforement": [45, 59], "explan": 45, "set_cell_formula": 45, "transpos": 45, "e3": 45, "b3": 45, "set_cell_valu": [45, 87], "start_cel": 45, "table_head": [45, 93], "all_row": 45, "fourth": 45, "g1": 45, "uncom": 45, "m1": 45, "simplest": [45, 59], "set_styl": 45, "font_nam": 45, "famili": 45, "bold": 45, "ital": 45, "underlin": 45, "strikethrough": 45, "cell_fil": 45, "align_horizont": 45, "align_vert": 45, "justifi": 45, "centercontinu": 45, "distribut": 45, "0_": 45, "00e": 45, "am": [45, 75], "pm": 45, "ss": [45, 91], "hex": 45, "align": [45, 102], "lightblu": 45, "ff0000": 45, "arial": 45, "set_worksheet_valu": 45, "unhide_column": 45, "unhid": 45, "worksheet_exist": 45, "does_worksheet_exist": 45, "move_to_arch": 47, "find_fil": 47, "create_directori": 47, "move_fil": 47, "path_typ": 47, "absolute_path": 47, "symlink": 47, "append_to_binary_fil": 47, "append_to_fil": 47, "change_file_extens": 47, "copy_directori": 47, "copy_fil": 47, "create_binary_fil": 47, "fe88505b6162b2538a045c": 47, "2017": [47, 51], "file_example_jpg_100kb": 47, "create_fil": 47, "written": [47, 59, 83], "newfil": 47, "does_directory_exist": 47, "does_directory_not_exist": 47, "directory_exist": 47, "does_file_exist": 47, "log_exist": 47, "does_file_not_exist": 47, "empty_directori": 47, "include_dir": 47, "include_fil": 47, "get_file_creation_d": 47, "whenev": [47, 81], "get_file_extens": 47, "suffix": 47, "get_file_modified_d": 47, "get_file_nam": 47, "get_file_own": 47, "get_file_s": 47, "get_file_stem": 47, "is_directory_empti": 47, "directory_empti": 47, "new_fil": 47, "is_directory_not_empti": 47, "is_file_empti": 47, "is_file_not_empti": 47, "file_empti": 47, "alt_dir": 47, "join_path": 47, "compon": [47, 102], "ext": [47, 81, 102], "nest": [47, 51, 59], "list_directories_in_directori": 47, "list_files_in_directori": 47, "log_directory_tre": 47, "tree": [47, 57, 98, 102], "move_directori": 47, "normalize_path": 47, "redund": 47, "normalized_path": 47, "read_binary_fil": 47, "pictur": [47, 69], "read_fil": 47, "remove_directori": 47, "remove_fil": 47, "run_keyword_if_file_exist": 47, "touch_fil": 47, "touch": 47, "wait_until_cr": 47, "wait_until_modifi": 47, "wait_until_remov": 47, "ftplib": 49, "27345": 49, "12345": 49, "transfer": 49, "unilater": 49, "tl": [49, 51, 67, 102], "passiv": 49, "keyfil": 49, "certfil": 49, "source_address": 49, "certif": [49, 51, 102], "socket": [49, 102], "bind": [49, 102], "authenticationexcept": 49, "connnect": 49, "cwd": [49, 57], "dirnam": [49, 81], "remotefil": 49, "localfil": 49, "file_s": 49, "get_welcome_messag": 49, "mkd": 49, "pwd": 49, "fromnam": 49, "tonam": 49, "rmd": 49, "send_command": 49, "wikipedia": [49, 67], "list_of_ftp_command": 49, "set_ascii_mod": 49, "ascii": [49, 102], "set_binary_mod": 49, "set_debug_level": 49, "moder": 49, "requestslibrari": [51, 102], "default_retry_method_list": 51, "trace": 51, "check_vulner": 51, "vulner": [51, 102], "runtim": [51, 102], "openssl": [51, 102], "discov": [51, 59], "create_client_cert_sess": 51, "client_cert": 51, "max_retri": 51, "backoff_factor": 51, "disable_warn": 51, "retry_status_list": 51, "retry_method_list": 51, "map": [51, 59, 81, 85, 93, 98, 102], "3128": 51, "4012": 51, "cert": 51, "ca_bundl": [51, 102], "verbos": [51, 102], "httplib": 51, "httpconnect": 51, "set_debuglevel": 51, "retri": [51, 75, 81, 91, 102], "kind": [51, 102], "regardless": 51, "testcas": 51, "introduc": [51, 61], "eg": 51, "attemp": 51, "urllib3": 51, "readthedoc": [51, 67], "uppercas": 51, "verb": 51, "idempot": 51, "502": [51, 102], "503": 51, "create_custom_sess": 51, "create_digest_sess": 51, "ntlm": 51, "create_ntlm_sess": 51, "create_sess": 51, "delete_all_sess": 51, "delete_on_sess": 51, "expected_statu": 51, "delete_request": 51, "allow_redirect": 51, "cach": [51, 91, 102], "force_new_sess": 51, "stream": [51, 75, 102], "download_path": [51, 91], "word_exampl": 51, "wp": 51, "sample_100kb": 51, "excel_exampl": 51, "file_example_xls_10": 51, "reus": [51, 102], "verif": [51, 102], "immedi": [51, 102], "get_current_session_alia": 51, "get_file_for_streaming_upload": 51, "descriptor": [51, 91], "caller": 51, "get_on_sess": 51, "get_request": 51, "urlencod": 51, "head_on_sess": 51, "oppos": 51, "head_request": 51, "http_get": 51, "old": [51, 69, 100, 102], "scheme": [51, 102], "options_on_sess": 51, "options_request": 51, "patch_on_sess": 51, "patch_request": 51, "post_on_sess": 51, "post_request": 51, "multipart": 51, "put_on_sess": 51, "put_request": 51, "request_should_be_success": 51, "4xx": 51, "5xx": 51, "httperror": 51, "versatil": 51, "session_exist": 51, "session_less_delet": 51, "session_less_get": 51, "serializ": [51, 59, 81], "cookiejar": 51, "fileobj": 51, "content_typ": 51, "custom_head": 51, "ca": 51, "offici": [51, 83, 102], "session_less_head": 51, "session_less_opt": 51, "session_less_patch": 51, "session_less_post": 51, "session_less_put": 51, "status_should_b": 51, "But": [51, 57, 59], "bad": 51, "404": 51, "resp": 51, "notfound": 51, "NOT": [51, 57, 87, 98], "to_json": 51, "pretty_print": 51, "pretti": 51, "update_sess": 51, "hubspot_apikei": 53, "hubspot_access_token": 53, "understand": 53, "millisecond": [53, 87], "result_format": [53, 55, 69], "multipli": [53, 98], "nearest": 53, "integar": [53, 91], "18": [53, 87], "yesterdai": 53, "24h": 53, "yesterday_hs_t": 53, "deal": [53, 57], "hs_lastmodifiedd": 53, "gte": 53, "get_current_d": 53, "subtract_time_from_d": 53, "search_for_object": 53, "wish": 53, "finland": [53, 85], "new_compani": 53, "batchinputfactori": 53, "batchmod": 53, "robocorpvault": 53, "extend_input": 53, "citi": 53, "espoo": [53, 85], "alphabet": 53, "mountain": 53, "1001": 53, "1002": 53, "batch_input": 53, "updated_compani": 53, "execute_batch": 53, "n": [53, 59, 65, 87], "recal": 53, "use_cach": [53, 91], "object_typ": [53, 85], "singular": 53, "plural": 53, "rather": 53, "account_nokia": [53, 85], "6818764598": 53, "nokia_account_id": [53, 85], "get_object": 53, "whose": [53, 96], "created_at": 53, "updated_at": 53, "archived_at": 53, "deals_to_compani": 53, "multi": [53, 60, 63, 102], "travel": 53, "readabel": 53, "stage": [53, 85], "display_ord": 53, "th": 53, "sale": 53, "first_nam": 53, "last_nam": 53, "team": 53, "membership": 53, "secondari": 53, "builtin_plural_map": 53, "contact": 53, "submiss": 53, "feadback": 53, "ticket": 53, "builtin_singular_map": 53, "add_input_to_batch": 53, "object_id": [53, 85], "auth_with_api_kei": 53, "wide": 53, "auth_with_token": [53, 85], "clear_current_batch": 53, "create_new_batch": 53, "create_object": 53, "nonexist": 53, "paremet": 53, "extend_batch_with_input": 53, "get_current_batch": 53, "get_current_batch_input": 53, "get_current_stage_of_object": 53, "id_properti": 53, "label_as_kei": 53, "hupspot": 53, "recach": 53, "get_owner_by_id": 53, "owner_id": 53, "owner_email": 53, "provis": 53, "get_owner_of_object": 53, "hs_object": 53, "owner_properti": 53, "hubspot_owner_id": 53, "get_pipelin": 53, "pipeline_id": 53, "discreet": 53, "accessess": 53, "comprehens": 53, "concept": 53, "step_on": 53, "visib": 53, "get_pipeline_stag": 53, "isclos": 53, "closed_won_stage_id": 53, "dealstag": 53, "eq": 53, "get_us": 53, "user_email": 53, "list_associ": 53, "to_object_typ": 53, "contact_to_compani": 53, "list_pipelin": 53, "unarchiv": 53, "objectschema": 53, "natural_search": 53, "string_queri": 53, "record": [53, 65, 73, 87, 98, 102], "AND": [53, 98], "OR": [53, 59, 77, 79, 81, 98], "lt": 53, "lte": 53, "gt": 53, "neq": 53, "not_in": 53, "has_properti": 53, "opposit": 53, "not_has_properti": 53, "contains_token": 53, "not_contains_token": 53, "alic": 53, "smith": 53, "enum1": 53, "caten": [53, 81], "proeprti": 53, "filtergroup": 53, "logic": 53, "combination_search": 53, "propertynam": 53, "pseudo": 53, "seach": 53, "search_object": 53, "searchabl": 53, "set_associ": 53, "to_object_id": 53, "association_typ": 53, "company_to_contact": 53, "set_current_batch_input": 53, "update_object": 53, "upper": 55, "increas": [55, 91, 102], "toward": 55, "pillow": [55, 102], "robust": 55, "numpi": [55, 102], "opencv": [55, 102], "opt": [55, 57], "imagenotfounderror": 55, "desktop_": 55, "draw_matches_on_imag": 55, "find_template_in_imag": 55, "show_region_in_imag": 55, "crop_imag": 55, "significantli": [55, 102], "get_pixel_color_in_imag": 55, "pil": 55, "onto": 55, "ignore_callback": [57, 102], "access_bridge_path": [57, 102], "max_depth": [57, 102], "disable_refresh": [57, 102], "bridg": [57, 102], "technologi": 57, "juli": [57, 102], "27": [57, 87], "insight": [57, 98], "Then": 57, "rc_java_access_bridge_dl": 57, "windowsaccessbridg": 57, "dll": [57, 102], "jabswitch": 57, "situat": [57, 98], "regular": [57, 102], "bring": 57, "numberfield": 57, "startswith": 57, "type1": 57, "javael": [57, 102], "contextnod": 57, "java_el": [57, 102], "node": [57, 59, 87], "javaobject": 57, "ancestri": 57, "states_str": 57, "col": 57, "column_count": 57, "visible_children": 57, "visible_children_count": 57, "index_in_par": 57, "swing": [57, 102], "jar": 57, "basicsw": 57, "shell": [57, 87, 102], "chat": [57, 67, 69, 102], "subprocess": [57, 102], "jab": [57, 102], "popen": 57, "close_fd": 57, "select_window": 57, "click_el": [57, 87], "application_refresh": 57, "call_element_act": 57, "click_coordin": 57, "click_push_button": 57, "button_nam": 57, "close_java_window": 57, "get_element_act": 57, "get_element_text": 57, "butto": 57, "moretext": 57, "get_locator_tre": 57, "mostli": 57, "indexinpar": [57, 102], "get_version_info": 57, "list_java_window": 57, "javawindow": 57, "hwnd": 57, "window_list": 57, "select_window_by_pid": 57, "len": [57, 59, 81, 91], "simultan": 57, "print_element_tre": 57, "print_locator_tre": 57, "read_tabl": 57, "visible_onli": [57, 102], "locator_t": 57, "refresh_el": 57, "thu": [57, 102], "big": [57, 63, 102], "select_menu": 57, "bring_foreground": 57, "brought": 57, "foreground": 57, "select_window_by_titl": 57, "set_display_scale_factor": 57, "set_mouse_posit": 57, "shutdown_jab": 57, "shutdown": 57, "toggle_drop_down": 57, "toggl": 57, "dropdown": [57, 87], "wait_until_element_exist": 57, "wait_until_element_is_focus": 57, "wait_until_element_text_contain": 57, "wait_until_element_text_equ": 57, "interchang": 59, "inspir": 59, "subset": 59, "facto": 59, "agnost": 59, "easili": [59, 93, 102], "arrai": [59, 85, 91], "quickli": 59, "flavor": 59, "ng": 59, "analog": 59, "johnni": 59, "streetroad": 59, "103": 59, "98": 59, "99": [59, 93], "jane": 59, "waypath": 59, "321": 59, "2330": 59, "come": [59, 67, 102], "deliveri": 59, "cost": 59, "expens": 59, "wilcard": 59, "slice": [59, 93, 102], "substitut": 59, "arithmet": 59, "encapsul": [59, 102], "backtick": 59, "sai": 59, "book": 59, "genr": 59, "horror": 59, "young": 59, "adult": 59, "repl": [59, 102], "char": [59, 102], "segment": 59, "max_split": 59, "concaten": 59, "multitud": 59, "seen": [59, 102], "individu": [59, 81, 93], "add_to_json": 59, "expr": 59, "peopl": 59, "j": 59, "convert_string_to_json": 59, "convert_json_to_str": 59, "obj": 59, "builtin": [59, 83, 93], "should_be_equ": 59, "delete_from_json": 59, "get_value_from_json": 59, "ingest": 59, "json_str": 59, "tx": 59, "001": [59, 69], "002": 59, "003": [59, 69], "004": 59, "152": 59, "005": 59, "json_doc": 59, "noutput": 59, "get_values_from_json": 59, "simplist": 59, "za": 59, "texa": 59, "load_json_from_fil": 59, "scalar": 59, "save_json_to_fil": 59, "indent": [59, 85, 102], "update_value_to_json": 59, "johnmalkovich": 59, "updated_doc": 59, "nnew": 59, "new_email": 59, "charg": 59, "id_pric": 59, "order_id": 59, "one_pric": 59, "counter": [60, 61, 102], "vault_kei": 61, "otpmod": 61, "intend": 61, "late": 61, "pyotp": 61, "requests_oauthlib": 61, "passcod": 61, "otpsecret": 61, "qr": 61, "mobil": 61, "phone": 61, "duplic": [61, 102], "get_time_based_otp": 61, "redirect_uri": [61, 63], "arbitrari": [61, 102], "oauthlib": [61, 102], "consent": 61, "offlin": 61, "oauthplayground": 61, "prompt": [61, 69, 102], "grant": [61, 63, 102], "lib_mfa": 61, "get_counter_based_otp": 61, "otp_passcod": 61, "token_url": 61, "oauth2sess": 61, "refresh_token": [61, 63], "guarante": 61, "constant": [61, 91, 102], "set_counter_based_otp": 61, "set_time_based_otp": 61, "use_mfa_secret_from_vault": 61, "o365": [62, 63, 102], "abil": [62, 63, 68, 102], "graph": [62, 63, 102], "programmat": [62, 63, 68, 98, 102], "vault_backend": 63, "vault_secret": 63, "file_backend_path": 63, "windowspath": 63, "openid": 63, "expos": [63, 81, 102], "behalf": 63, "bot": 63, "microsoftonlin": 63, "nativecli": 63, "organiz": 63, "authorize_and_get_token": 63, "authorization_url": 63, "configure_msgraph_cli": 63, "create_sharepoint_list": 63, "list_data": 63, "sharepointlist": 63, "sharepoint": [63, 102], "download_file_from_onedr": 63, "to_path": 63, "onedr": 63, "driveitem": 63, "download_file_from_share_link": 63, "share_url": 63, "download_file_from_sharepoint": 63, "download_folder_from_onedr": 63, "caution": 63, "find_onedrive_fil": 63, "include_fold": 63, "across": 63, "generate_oauth_authorization_url": 63, "get_drive_inst": 63, "drive_id": [63, 102], "get_file_inst": 63, "reobtain": 63, "get_folder_inst": 63, "get_items_from_sharepoint_list": 63, "list_nam": 63, "get_m": [63, 96], "get_scop": 63, "mailbox_shar": 63, "message_send": 63, "message_send_shar": 63, "message_al": 63, "message_all_shar": 63, "address_book": 63, "address_book_shar": 63, "address_book_al": 63, "address_book_all_shar": 63, "calendar_shar": 63, "calendar_al": 63, "calendar_shared_al": 63, "onedrive_al": 63, "sharepoint_dl": 63, "settings_al": 63, "tasks_al": 63, "presenc": 63, "get_sharepoint_sit": 63, "list_files_in_onedrive_fold": 63, "list_files_in_sharepoint_site_dr": 63, "list_sharepoint_site_dr": 63, "search_for_us": 63, "search_field": 63, "displaynam": 63, "upload_file_to_onedr": 63, "suitetalk": [64, 65], "soap": 65, "netsuitesdk": 65, "webservic": 65, "account_typ": 65, "_expens": 65, "netsuite_account": 65, "bill": 65, "vendor": 65, "netsuite_bil": 65, "consumer_kei": [65, 85, 96], "consumer_secret": [65, 85, 96], "token_kei": 65, "token_secret": 65, "get_account": 65, "currenc": 65, "get_curr": 65, "ns_account": 65, "ns_consumer_kei": 65, "ns_consumer_secret": 65, "ns_token_kei": 65, "ns_token_secret": 65, "get_classif": 65, "classif": 65, "currency_id": 65, "get_depart": 65, "depart": 65, "get_loc": 65, "get_vendor_bil": 65, "get_vendor": 65, "ns_email": 65, "ns_password": 65, "ns_role": 65, "ns_appid": 65, "netsuite_get": 65, "record_typ": 65, "internal_id": 65, "internalid": 65, "externalid": 65, "netsuite_get_al": 65, "netsuite_search": 65, "type_nam": 65, "search_valu": 65, "page_s": 65, "paginatedsearch": 65, "netsuite_search_al": 65, "interfact": 67, "pushov": [67, 102], "telegram": 67, "twilio": 67, "gitter": 67, "mailgun": 67, "pagerduti": 67, "popcornnotifi": 67, "pushbullet": 67, "simplepush": 67, "statuspag": 67, "zulip": 67, "provider_nam": 67, "room_id": 67, "id_of_the_gitter_room": 67, "office365": 67, "account_usernam": 67, "account_password": 67, "recipient_email": 67, "from_": 67, "sender_address": 67, "email_usernam": 67, "email_password": 67, "email_notifi": 67, "sender_email": 67, "slack_webhook": 67, "webhookdetail": 67, "webhook_url": [67, 89], "slack_attach": 67, "liverpool": 67, "wikimedia": 67, "cd": 67, "liverpool_fc": 67, "n_logo": 67, "1200px": 67, "notify_slack": 67, "slack_webhook_url": 67, "generic_notifi": 67, "notify_email": 67, "recipient_email_address": 67, "outlook_usernam": 67, "outlook_password": 67, "notify_gmail": 67, "notify_pushov": 67, "webhook": [67, 75, 89], "notify_telegram": 67, "chat_id": 67, "notify_twilio": 67, "number_from": 67, "number_to": 67, "account_sid": 67, "sid": 67, "secret_nam": [69, 77, 79], "taglin": 69, "ic": 69, "cream": 69, "shop": 69, "temperatur": 69, "authorize_to_openai": 69, "completion_cr": 69, "icecream": 69, "authorize_to_azure_openai": 69, "api_bas": 69, "api_typ": 69, "api_vers": 69, "azureopenai": 69, "chat_completion_cr": 69, "user_cont": 69, "gpt": [69, 102], "turbo": 69, "system_cont": 69, "top_prob": 69, "frequency_penalti": 69, "presence_penalti": 69, "chatgpt": [69, 102], "histori": [69, 91], "deployment_nam": 69, "deploy": 69, "mygpt4deploy": 69, "risk": 69, "nucleu": 69, "top_p": 69, "mass": 69, "penal": 69, "frequenc": 69, "far": 69, "chatgpt_convers": 69, "biggest": 69, "mammal": 69, "davinci": 69, "max_token": 69, "256": [69, 102], "mydavinci3deploy": 69, "divers": 69, "half": [69, 81], "likelihood": 69, "weight": 69, "image_cr": 69, "512x512": 69, "num_imag": 69, "256x256": 69, "1024x1024": 69, "cartoon": 69, "cute": 69, "monkei": [69, 75], "skateboard": 69, "image_create_vari": 69, "src_imag": 69, "variat": [69, 102], "4mb": 69, "source_imag": 69, "coupl": 71, "email_filt": 71, "senderemailaddress": 71, "send_email": 71, "emailaddress_1": 71, "emailaddress_2": 71, "2007": [71, 102], "bb219950": 71, "v": [71, 87, 98, 102], "get_email": 71, "attachment_fold": 71, "sort_kei": 71, "sort_descend": 71, "email_fold": 71, "incom": 71, "mark_email_as_read": 71, "move_email": 71, "save_email_attach": 71, "100000": 71, "html_bodi": 71, "save_as_draft": [71, 102], "cc_recipi": 71, "bcc_recipi": 71, "check_nam": [71, 102], "draft": 71, "recipient3": 71, "recipient4": 71, "recipient1": 71, "cc_repient": 71, "bcc_repient": 71, "recipient5": 71, "recipient6": 71, "wait_for_email": 71, "watermark": [73, 102], "therefor": [73, 81, 87], "accur": 73, "pain": 73, "use_appearances_writ": 73, "extract_data_from_first_pag": 73, "get_text_from_pdf": 73, "get_lines_matching_regexp": 73, "get_invoice_numb": 73, "open_pdf": 73, "find_text": [73, 100], "fill_form_field": 73, "switch_to_pdf": 73, "get_input_field": 73, "set_field_valu": 73, "save_field_valu": 73, "workspace_id": 75, "process_id": 75, "workspace_api_kei": 75, "cr": 75, "rc_api_process_host": [75, 102], "workforc": 75, "processapi": 75, "item1": 75, "fname": 75, "item2": 75, "work_item": 75, "workdata": 75, "item_id": [75, 81, 87], "config_typ": 75, "extra_info": 75, "artifact": [75, 102], "filematch": 75, "process_run_id": 75, "processrunid": 75, "step_run_id": [75, 102], "activityrunid": 75, "download_link": 75, "artifact_id": 75, "retry_failed_item": 75, "list_process_work_item": 75, "retry_work_item": 75, "download_artifacts_match": 75, "list_run_artifact": 75, "get_robot_run_artifact": 75, "target_filepath": 75, "getenv": 75, "base_api": 75, "create_input_work_item": 75, "get_process_id_by_nam": 75, "workspac": [75, 77, 79, 91], "get_process_run_statu": 75, "get_work_item": 75, "workitem_id": 75, "include_data": 75, "list_process_run_work_item": 75, "item_st": 75, "list_process_run": 75, "run_stat": 75, "list_process_runs_in_workspac": 75, "list_process": 75, "process_api": 75, "register_file_upload": 75, "workitem_filenam": 75, "work_item_id": 75, "set_apikei": 75, "set_process_id": 75, "set_workspace_id": 75, "start_configured_process": 75, "configurationtyp": 75, "start_process": 75, "upload_file_to_s3": 75, "workspace_api": 75, "taken": [77, 79], "rcc": [77, 79], "fashion": [77, 79], "rc_api_secret_host": [77, 79], "rc_api_secret_token": [77, 79], "rc_workspace_id": [77, 79], "rpa_secret_manag": [77, 79], "rpa_secret_fil": [77, 79], "swaglab": [77, 79], "standard_us": [77, 79], "secret_sauc": [77, 79], "nobodi": [77, 79], "reading_secret": [77, 79], "modifying_secret": [77, 79], "set_secret": [77, 79], "autoload": [81, 102], "default_adapt": 81, "baseadapt": 81, "robocorpadapt": 81, "auto_parse_email": 81, "__mail": 81, "parsedemail": [81, 102], "rawemail": 81, "treat": 81, "truthi": 81, "transform": 81, "attend": [81, 102], "world": 81, "behaviour": [81, 83, 85, 98, 102], "alter": [81, 98], "back": [81, 83, 98], "defer": 81, "rpa_workitems_adapt": 81, "fileadapt": [81, 102], "variable1": 81, "variable2": 81, "adjac": [81, 102], "rpa_output_workitem_path": [81, 102], "simul": [81, 102], "dude": 81, "list_vari": 81, "get_work_item_vari": 81, "email_body_load": 81, "full_load": 81, "robot_listener_api_vers": [81, 83], "active_input": 81, "add_work_item_fil": 81, "clear_work_item": 81, "wi": 81, "save_work_item": 81, "create_output_work_item": 81, "customer_var": 81, "delete_work_item_vari": 81, "for_each_input_work_item": 81, "keyword_or_func": 81, "items_limit": [81, 102], "return_result": [81, 102], "rf": [81, 83, 93], "deplet": 81, "log_payload": 81, "get_work_item_payload": 81, "get_current_work_item": 81, "_internal_cal": 81, "customer_": 81, "keyerror": 81, "guest": 81, "input_wi": 81, "list_work_item_fil": 81, "list_work_item_vari": 81, "release_input_work_item": 81, "exception_typ": 81, "_internal_releas": 81, "lastli": 81, "login_portal_down": 81, "unabl": [81, 93], "err": 81, "doc_format_error": 81, "process_and_set_st": 81, "remove_work_item_fil": 81, "set_current_work_item": 81, "parent_wi": 81, "child_wi": 81, "set_task_variables_from_work_item": 81, "input_url": 81, "set_work_item_payload": 81, "set_work_item_vari": 81, "markymark": 81, "appl": 81, "listen": 83, "mute": [83, 98, 102], "cours": [83, 102], "optional_keyword_to_run": 83, "xyz": 83, "exit": [83, 102], "robotnotrunningerror": 83, "import_librari": 83, "customlibrari": 83, "__init__": 83, "register_protected_keyword": 83, "special_keyword": 83, "info_level_keyword": 83, "keywords_to_mut": 83, "keywords_to_protect": 83, "robocloud": [83, 102], "end_keyword": 83, "mute_run_on_failur": 83, "only_info_level": 83, "start_keyword": 83, "temporarili": 83, "dataload": 85, "execute_dataloader_import": 85, "mimic": 85, "input_object": 85, "mapping_dict": 85, "tilaus__c": 85, "workdir": 85, "asiaka": 85, "0015i000002jbliqa2": 85, "0015i000002jbldqa2": 85, "mapping_object": 85, "tilaaja__c": 85, "upsert": 85, "salseforc": 85, "update_obj": 85, "ltd": 85, "billingstreet": 85, "bulevard": 85, "api_token": 85, "pprint": 85, "pp": 85, "prettyprint": 85, "sf": 85, "get_salesforce_object_by_id": 85, "billing_inform": 85, "billingc": 85, "billingpostalcod": 85, "01210": 85, "billingcountri": 85, "update_salesforce_object": 85, "add_product_into_opportun": 85, "product_nam": 85, "quantiti": 85, "opportunity_id": 85, "pricebook_nam": 85, "custom_total_pric": 85, "opportun": 85, "pricelist": 85, "auth_with_connected_app": 85, "embed_api_token": 85, "emb": [85, 102], "robocop": 85, "create_new_opportun": 85, "close_d": 85, "opportunity_nam": 85, "stage_nam": 85, "create_salesforce_object": 85, "object_data": 85, "salesforcedatanotandictionari": 85, "delete_salesforce_object": 85, "salesfoc": 85, "describe_salesforce_object": 85, "execute_apex": 85, "apex": [85, 102], "apex_data": 85, "apex_method": 85, "myclass": 85, "getaccount": 85, "0017r00002xmxb1qam": 85, "execute_dataloader_insert": 85, "datahandl": 85, "dataloader_success": 85, "dataloader_error": 85, "get_dataloader_success_t": 85, "get_dataloader_error_t": 85, "get_domain": 85, "get_opportunity_id": 85, "get_pricebook_entri": 85, "pricebook": 85, "get_pricebook_id": 85, "get_products_in_pricelist": 85, "get_salesforce_object_metadata": 85, "read_dictionary_from_fil": 85, "mapping_fil": 85, "salesforce_queri": 85, "sql_string": 85, "salesforce_query_result_as_t": 85, "shorthand": 85, "session_id": 85, "set_account": 85, "account_id": 85, "set_domain": 85, "salsesforc": 85, "set_pricebook": 85, "upsert_salesforce_object": 85, "frankvanderkuur": 87, "sapguilibrari": [87, 102], "logon": 87, "autoit": 87, "wnd": 87, "tbar": 87, "btn": 87, "backslash": [87, 98], "element_id": 87, "click_toolbar_button": 87, "table_id": 87, "button_id": 87, "toolbar": 87, "gridview": [87, 102], "connect_to_existing_connect": 87, "connection_nam": 87, "connect_to_sess": 87, "explicit_wait": 87, "500m": 87, "disable_screenshots_on_error": 87, "doubleclick_el": 87, "column_id": [87, 91], "element_should_be_pres": 87, "element_value_should_b": 87, "expected_valu": 87, "uncheck": [87, 102], "radiobutton": 87, "combobox": 87, "element_value_should_contain": 87, "enable_screenshots_on_error": 87, "focus_and_click": 87, "wait_tim": 87, "adjust": [87, 102], "focus_and_input_text": 87, "generic_click_el": 87, "generic_input_password": 87, "generic_input_text": 87, "row_num": 87, "col_id": 87, "get_element_loc": 87, "get_element_typ": 87, "get_element_type_of_object": 87, "get_row_count": 87, "get_scroll_posit": 87, "get_statusbar_typ": 87, "messagetyp": 87, "statusbar": 87, "sbar": 87, "get_valu": 87, "guibutton": 87, "guititlebar": 87, "guistatusbar": 87, "guitab": 87, "get_window_titl": 87, "input_password": 87, "maximize_window": 87, "sapgui": 87, "open_connect": 87, "press_f1": 87, "pressf1": 87, "press_f4": 87, "pressf4": 87, "run_transact": 87, "unknown": [87, 93, 102], "select_context_menu_item": 87, "menu_or_button_id": 87, "select_from_list_by_label": 87, "select_nod": 87, "tree_id": 87, "node_id": 87, "expand": [87, 102], "tabletreecontrol": 87, "select_node_link": 87, "link_id1": 87, "link_id2": 87, "select_radio_button": 87, "select_table_column": 87, "select_table_row": 87, "tablecontrol": 87, "send_vkei": 87, "vkey_id": 87, "virtual": [87, 98], "vkei": 87, "f2": [87, 98], "72": 87, "f3": [87, 98], "28": 87, "74": 87, "f5": [87, 98], "75": 87, "f6": [87, 98], "76": 87, "del": [87, 98], "f7": [87, 98], "77": 87, "Ins": 87, "f8": [87, 98], "78": [87, 102], "f9": [87, 98], "79": 87, "34": [87, 102], "f10": [87, 98], "80": 87, "f11": [87, 98], "81": 87, "36": 87, "f12": [87, 98], "82": 87, "37": 87, "38": [87, 102], "84": 87, "39": [87, 102], "85": 87, "86": 87, "87": 87, "88": 87, "k": 87, "43": 87, "89": 87, "90": 87, "91": 87, "46": 87, "92": 87, "93": 87, "94": [87, 102], "70": [87, 102], "71": 87, "set_explicit_wait": 87, "700": 87, "milisecond": 87, "milli": 87, "sec": 87, "set_focu": 87, "take_screenshot": 87, "screenshot_nam": 87, "unselect_checkbox": 87, "slack_message_using_webhook": 89, "icon_emoji": 89, "slack_raw_messag": 89, "max_retry_tim": 91, "necessarili": 91, "unavail": [91, 102], "permalink": 91, "row_exclud": 91, "filteredoutrow": 91, "linkinfromcelldetail": 91, "linksouttocellsdetail": 91, "nonexistentcel": 91, "row_includ": 91, "attachmentfil": 91, "filteredout": 91, "rowid": 91, "rowpermalink": 91, "search_includ": 91, "favoriteflag": 91, "search_scop": 91, "celldata": 91, "foldernam": 91, "reportnam": 91, "sightnam": 91, "summaryfield": 91, "templatenam": 91, "workspacenam": 91, "sheet_includ": 91, "add_column": 91, "column_typ": 91, "text_numb": 91, "format_str": 91, "symbol": [91, 102], "picklist": 91, "multi_picklist": 91, "add_row": 91, "ordereddict": 91, "snake": 91, "row1": 91, "value1": 91, "value2": 91, "row2": 91, "value3": 91, "value4": 91, "row3": 91, "value5": 91, "value6": 91, "set_row": 91, "convert_row_to_dict": 91, "convert_sheet_to_t": 91, "differnt": 91, "from_sheet_id": 91, "download_attach": 91, "123456789": 91, "get_attach": 91, "get_application_const": 91, "serverinfo": 91, "scenario": [91, 102], "get_cell_histori": 91, "cell_histori": 91, "revis": 91, "modified_bi": 91, "get_current_us": 91, "get_sheet": 91, "row_id": 91, "filter_id": 91, "get_sheet_own": 91, "list_attach": 91, "list_column": 91, "list_sheet_filt": 91, "sheetfilt": 91, "filtered_sheet": 91, "my_sheet_id": 91, "list_sheet": 91, "reload": 91, "smartsheetlibrari": 91, "account_token": 91, "refresh_sheet": 91, "modified_sinc": 91, "personalworkspac": 91, "favorit": [91, 98], "parentobjectfavorit": 91, "sight": 91, "summari": 91, "set_access_token": 91, "set_max_retry_tim": 91, "rownumb": 91, "456": [91, 102], "789": 91, "unselect_current_sheet": 91, "update_column": 91, "five": 93, "bespok": 93, "group_table_by_column": 93, "add_cart": 93, "make_ord": 93, "add_table_column": 93, "TOS": 93, "is_first": 93, "isfirst": 93, "add_table_row": 93, "clear_tabl": 93, "copy_t": 93, "table_copi": 93, "namedtupl": [93, 102], "table_data_nam": 93, "table_data_ag": 93, "table_data": 93, "export_t": 93, "with_index": 93, "customerid": 93, "filter_empty_row": 93, "filter_table_by_column": 93, "uwnant": 93, "product_typ": 93, "filter_table_with_keyword": 93, "falsi": [93, 102], "find_table_row": 93, "get_table_cel": 93, "get_table_column": 93, "get_table_dimens": 93, "get_table_row": 93, "get_table_slic": 93, "exclus": 93, "map_column_valu": 93, "merge_t": 93, "egg": 93, "chees": 93, "ham": 93, "stock": 93, "pop_table_column": 93, "userid": 93, "pop_table_row": 93, "firt": 93, "dialect": [93, 102], "delimit": [93, 102], "column_unknown": 93, "deduc": 93, "rename_table_column": 93, "uno": 93, "set_row_as_column_nam": 93, "set_table_cel": 93, "set_table_column": 93, "set_table_row": 93, "sort_table_by_column": 93, "order_d": 93, "table_tail": 93, "tail": [93, 102], "trim_column_nam": 93, "extran": 93, "whitespac": [93, 102], "colum": 93, "trim_empty_row": 93, "write_table_to_csv": 93, "tweepi": 96, "twitter_consumer_kei": 96, "twitter_consumer_secret": 96, "twitter_access_token": 96, "twitter_access_token_secret": 96, "tweet": 96, "niinisto": 96, "get_user_tweet": 96, "tw": 96, "text_search_tweet": 96, "corona": 96, "trump": 96, "get_user_profil": 96, "access_token_secret": 96, "consum": [96, 98], "geocod": 96, "result_typ": 96, "since_id": 96, "max_id": 96, "popular": 96, "radiu": 96, "latitud": 96, "longitud": 96, "status": 96, "unfollow": 96, "unlik": 96, "standalon": 98, "terminologi": [98, 102], "controltyp": 98, "listitem": 98, "windowsel": 98, "fact": 98, "root_el": 98, "automationid": 98, "controltypenam": 98, "classnam": 98, "xcenter": 98, "ycenter": 98, "datagridrow": 98, "regexnam": 98, "subnam": [98, 102], "foundindex": 98, "searchdepth": 98, "travers": 98, "resort": 98, "cascad": 98, "effici": 98, "huge": 98, "spotifi": 98, "thing": 98, "clearbutton": 98, "units1": 98, "unit": 98, "370": [98, 102], "bigger": 98, "deeplynestedbutton": 98, "aren": [98, 102], "reliabl": [98, 102], "achiev": 98, "3rd": [98, 102], "yourself": 98, "uiautom": 98, "lbutton": 98, "rbutton": 98, "cancel": 98, "mbutton": 98, "xbutton1": 98, "x1": 98, "xbutton2": 98, "x2": 98, "capit": 98, "kana": 98, "im": 98, "hanguel": 98, "vk_hangul": 98, "hangul": 98, "junja": 98, "hanja": 98, "kanji": 98, "nonconvert": 98, "modechang": 98, "spacebar": 98, "pageup": 98, "pagedown": 98, "snapshot": 98, "printscreen": 98, "INS": 98, "lwin": 98, "rwin": 98, "numpad0": 98, "keypad": 98, "numpad1": 98, "numpad2": 98, "numpad3": 98, "numpad4": 98, "numpad5": 98, "numpad6": 98, "numpad7": 98, "numpad8": 98, "numpad9": 98, "subtract": 98, "f13": 98, "f14": 98, "f15": 98, "f16": 98, "f17": 98, "f18": 98, "f19": 98, "f21": 98, "f22": 98, "f23": 98, "f24": 98, "numlock": 98, "lshift": 98, "rshift": 98, "lcontrol": 98, "lctrl": 98, "rcontrol": 98, "rctrl": 98, "lalt": 98, "ralt": 98, "browser_back": 98, "browser_forward": 98, "browser_refresh": 98, "browser_stop": 98, "browser_search": 98, "browser_favorit": 98, "browser_hom": 98, "volume_mut": 98, "volum": 98, "volume_down": 98, "volume_up": 98, "media_next_track": 98, "media_prev_track": 98, "media_stop": 98, "media": 98, "media_play_paus": 98, "plai": 98, "launch_mail": 98, "launch_media_select": 98, "launch_app1": 98, "launch_app2": 98, "oem_1": 98, "miscellan": [98, 102], "vari": 98, "oem_plu": 98, "oem_comma": 98, "oem_minu": 98, "oem_period": 98, "oem_2": 98, "oem_3": 98, "oem_4": 98, "oem_5": 98, "oem_6": 98, "oem_7": 98, "oem_8": 98, "oem_102": 98, "angl": 98, "rt": 98, "102": 98, "processkei": 98, "packet": 98, "keystrok": 98, "vk_packet": 98, "low": 98, "remark": 98, "keybdinput": 98, "sendinput": 98, "wm_keydown": 98, "wm_keyup": 98, "attn": 98, "crsel": 98, "exsel": 98, "ereof": 98, "eras": 98, "eof": 98, "zoom": 98, "nonam": 98, "pa1": 98, "oem_clear": 98, "specialkeynam": 98, "ab": 98, "abc": 98, "0123456789": 98, "abcdefghijklmnopqrstuvwxyz": 98, "accesskei": 98, "kept": [98, 102], "inspector": 98, "log_as_warn": 98, "rudimentari": 98, "windowcontrol": 98, "applicationframewindow": 98, "9569486": 98, "titlebar": 98, "applicationframetitlebarwindow": 98, "textcontrol": 98, "eight": 98, "num8button": 98, "buttoncontrol": 98, "nine": 98, "num9button": 98, "abot": 98, "loom": 98, "2807372359f34b9cbe1bc2df9194ec68": 98, "distort": 98, "disturb": 98, "obstruct": 98, "96": 98, "test_do_some_calcul": 98, "windows_run": 98, "control_window": 98, "get_attribut": 98, "close_current_window": 98, "simulate_mov": 98, "write_text": 100, "save_document_a": 100, "fileformat": 100, "wdformatdocumentdefault": 100, "wdformathtml": 100, "opendocu": 100, "wdformatopendocumenttext": 100, "wdformatpdf": 100, "rtf": 100, "wdformatrtf": 100, "word97": 100, "wdformatdocument97": 100, "copy_selection_to_clipboard": 100, "create_new_docu": 100, "export_to_pdf": 100, "cursor_posit": 100, "cursorposit": 100, "no_mov": 100, "cursor": [100, 102], "get_all_text": 100, "get_current_lin": 100, "get_number_of_lin": 100, "move_horizont": 100, "move_to_end": 100, "move_to_line_end": 100, "move_to_line_start": 100, "move_to_top": 100, "move_vert": 100, "replace_text": 100, "save_docu": 100, "select_current_paragraph": 100, "select_paragraph": 100, "set_foot": 100, "set_head": 100, "end_of_text": 100, "bump": 102, "cwe": 102, "1333": 102, "mitr": 102, "cryptographi": 102, "mention": 102, "upgrad": 102, "1199": 102, "truststor": 102, "1191": 102, "enhanc": 102, "start_aft": 102, "garbag": 102, "unreleas": 102, "rgb_to_excel_color": 102, "suitabl": 102, "interior": 102, "1182": 102, "1179": 102, "1178": 102, "spefic": 102, "aiohttp": 102, "chore": 102, "1160": 102, "1159": 102, "1158": 102, "1157": 102, "intellisens": 102, "1152": 102, "move_": 102, "refactor": 102, "1149": 102, "1145": 102, "init_": 102, "markdown": 102, "1144": 102, "1139": 102, "anymor": 102, "1140": 102, "1106": 102, "accordingli": 102, "1128": 102, "1134": 102, "1129": 102, "1130": 102, "thank": 102, "enrico": 102, "franzelli": 102, "contribut": 102, "importlib": 102, "1127": 102, "correctli": 102, "1122": 102, "know": 102, "1123": 102, "dirti": 102, "nit": 102, "inherit": 102, "slip": 102, "strongli": 102, "suggest": 102, "pin": 102, "1060": 102, "inner": 102, "bugfix": 102, "casual": 102, "1105": 102, "1102": 102, "working_dir": 102, "1091": 102, "1078": 102, "1079": 102, "1075": 102, "remind": 102, "wdm_ssl_verifi": 102, "1092": 102, "rc_disable_ssl": 102, "inject": 102, "happen": 102, "1083": 102, "1084": 102, "whitelist": 102, "rpa_external_webdriv": 102, "1080": 102, "64bit": 102, "rpa_allow_64bit_i": 102, "32bit": 102, "1087": 102, "1082": 102, "repurpos": 102, "1057": 102, "overal": 102, "994": 102, "950": 102, "1068": 102, "1069": 102, "1059": 102, "1058": 102, "1055": 102, "better": 102, "tabnam": 102, "719": 102, "1051": 102, "872": 102, "1003": 102, "1054": 102, "1035": 102, "115": 102, "1021": 102, "rpa_selenium_binary_loc": 102, "render": 102, "1016": 102, "gone": 102, "957": 102, "980": 102, "979": 102, "978": 102, "974": 102, "949": 102, "941": 102, "942": 102, "166": 102, "973": 102, "azureai": 102, "943": 102, "overcom": 102, "884": 102, "762": 102, "882": 102, "865": 102, "940": 102, "939": 102, "944": 102, "resultset": 102, "948": 102, "930": 102, "938": 102, "947": 102, "favor": 102, "involv": 102, "945": 102, "935": 102, "926": 102, "916": 102, "586": 102, "919": 102, "pollut": 102, "920": 102, "913": 102, "actionnotposs": 102, "wouldn": 102, "914": 102, "typeerror": 102, "pickl": 102, "dict_kei": 102, "912": 102, "alongsid": 102, "flatten": 102, "besid": 102, "require_open_xlsx_workbook": 102, "908": 102, "switch_window_by_titl": 102, "899": 102, "909": 102, "880": 102, "light": 102, "boxes_flow": 102, "picker": 102, "sometim": 102, "859": 102, "694": 102, "psycopg2": 102, "privaci": 102, "878": 102, "difficult": 102, "regress": 102, "silent": 102, "869": 102, "movement": 102, "855": 102, "send_keys_fallback": 102, "483": 102, "clearer": 102, "usabl": 102, "796": 102, "combo": 102, "791": 102, "591": 102, "797": 102, "pyyaml": 102, "langchain": 102, "867": 102, "earlier": 102, "clariti": 102, "reduc": 102, "unnecessari": 102, "didn": 102, "obei": 102, "migrat": 102, "840": 102, "821": 102, "845": 102, "lower": 102, "misbehav": 102, "838": 102, "828": 102, "833": 102, "803": 102, "792": 102, "four": 102, "cover": 102, "dall": 102, "experi": 102, "webview": 102, "broken": 102, "boilerpl": 102, "635": 102, "robocloud_vault_nam": 102, "use_robocloud_vault": 102, "794": 102, "785": 102, "subtext": 102, "787": 102, "781": 102, "rpa_selenium_browser_ord": 102, "745": 102, "773": 102, "772": 102, "767": 102, "parti": 102, "behav": 102, "pynput": 102, "mislead": 102, "740": 102, "736": 102, "706": 102, "604": 102, "658": 102, "710": 102, "711": 102, "712": 102, "693": 102, "siblings_onli": 102, "ON": 102, "sibl": 102, "692": 102, "687": 102, "pywintypesxx": 102, "683": 102, "685": 102, "cve": 102, "557": 102, "669": 102, "666": 102, "667": 102, "656": 102, "661": 102, "mac": 102, "arm64": 102, "663": 102, "660": 102, "176": 102, "653": 102, "655": 102, "570": 102, "649": 102, "psycopg": 102, "postgresql": 102, "648": 102, "647": 102, "643": 102, "641": 102, "637": 102, "638": 102, "639": 102, "619": 102, "618": 102, "622": 102, "615": 102, "609": 102, "robocorp_click_offset": 102, "610": 102, "611": 102, "494": 102, "602": 102, "607": 102, "got": 102, "385": 102, "oracl": 102, "oracledb": 102, "leak": 102, "599": 102, "603": 102, "lxml": 102, "495": 102, "226": 102, "220": 102, "597": 102, "stem": 102, "583": 102, "593": 102, "592": 102, "rpa_locators_databas": 102, "558": 102, "rational": 102, "538": 102, "unexpectedli": 102, "584": 102, "problemat": 102, "479": 102, "224": 102, "trail": 102, "572": 102, "567": 102, "568": 102, "560": 102, "libspec": 102, "549": 102, "492": 102, "493": 102, "typehint": 102, "548": 102, "jsontyp": 102, "lab": 102, "508": 102, "496": 102, "498": 102, "536": 102, "545": 102, "concern": 102, "515": 102, "481": 102, "504": 102, "505": 102, "506": 102, "507": 102, "490": 102, "485": 102, "484": 102, "491": 102, "indexerror": 102, "470": 102, "477": 102, "469": 102, "473": 102, "439": 102, "471": 102, "408": 102, "363": 102, "wizard": 102, "452": 102, "pyodbc": 102, "443": 102, "hang": 102, "_contain": 102, "throw": 102, "notimplementederror": 102, "392": 102, "394": 102, "391": 102, "pywin32": 102, "comtyp": 102, "interrupt": 102, "spawn": 102, "aid": 102, "comerror": 102, "381": 102, "380": 102, "355": 102, "atleast": 102, "286": 102, "282": 102, "337": 102, "serial": 102, "cleanup": 102, "322": 102, "315": 102, "304": 102, "codec": 102, "243": 102, "only_closest": 102, "closest_neighbour": 102, "pinpoint": 102, "neighbour": 102, "298": 102, "295": 102, "285": 102, "303": 102, "octet": 102, "junk": 102, "dump": 102, "287": 102, "279": 102, "290": 102, "275": 102, "250": 102, "252": 102, "253": 102, "248": 102, "dependt": 102, "bypass": 102, "241": 102, "225": 102, "textbox": 102, "235": 102, "rpa_input_workitem_path": 102, "234": 102, "237": 102, "tzlocal": 102, "newlin": 102, "carriag": 102, "203": 102, "ibm_db": 102, "pythonlibcor": 102, "pymssql": 102, "received_bi": 102, "experiment": 102, "appreci": 102, "alias": 102, "dock": 102, "pyobjc": 102, "confus": 102, "shortcom": 102, "171": 102, "rotat": 102, "figur": 102, "pdfminer": 102, "161": 102, "antusystem": 102, "156": 102, "reboot": 102, "unifi": 102, "mismatch": 102, "nonetyp": 102, "146": 102, "148": 102, "activedocu": 102, "notebook": 102, "element1": 102, "constrain": 102, "chardet": 102, "destructor": 102, "gather": 102, "buffer": 102, "period": 102, "docutil": 102, "lsp": 102, "evdev": 102, "logarithm": 102, "stylesheet": 102, "shm": 102, "unsav": 102, "predefin": 102, "databaselibrari": 102, "pyscreenshot": 102, "mss": 102, "termin": 102, "filetyp": 102, "unpack": 102, "earli": 102, "superflu": 102, "jupyt": 102, "robocod": 102, "embed": 102, "infobar": 102, "use_test": 102, "mitig": 102, "msoffic": 102, "mdp": 102, "ga": 102, "kw": 102, "imapstmp": 102, "harmon": 102, "psutil": 102, "wheel": 102, "interpol": 102, "sanit": 102, "webdrivermanag": 102, "restructur": 102}, "objects": {"RPA.Archive": [[5, 0, 1, "", "Archive"]], "RPA.Archive.Archive": [[5, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [5, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [5, 2, 1, "", "add_to_archive"], [5, 2, 1, "", "archive_folder_with_tar"], [5, 2, 1, "", "archive_folder_with_zip"], [5, 2, 1, "", "extract_archive"], [5, 2, 1, "", "extract_file_from_archive"], [5, 2, 1, "", "get_archive_info"], [5, 2, 1, "", "list_archive"]], "RPA.Assistant": [[7, 0, 1, "", "Assistant"]], "RPA.Assistant.Assistant": [[7, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [7, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [7, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [7, 2, 1, "", "add_button"], [7, 2, 1, "", "add_checkbox"], [7, 2, 1, "", "add_date_input"], [7, 2, 1, "", "add_drop_down"], [7, 2, 1, "", "add_file"], [7, 2, 1, "", "add_file_input"], [7, 2, 1, "", "add_files"], [7, 2, 1, "", "add_flet_icon"], [7, 2, 1, "", "add_heading"], [7, 2, 1, "", "add_hidden_input"], [7, 2, 1, "", "add_icon"], [7, 2, 1, "", "add_image"], [7, 2, 1, "", "add_link"], [7, 2, 1, "", "add_loading_bar"], [7, 2, 1, "", "add_loading_spinner"], [7, 2, 1, "", "add_next_ui_button"], [7, 2, 1, "", "add_password_input"], [7, 2, 1, "", "add_radio_buttons"], [7, 2, 1, "", "add_slider"], [7, 2, 1, "", "add_submit_buttons"], [7, 2, 1, "", "add_text"], [7, 2, 1, "", "add_text_input"], [7, 2, 1, "", "ask_user"], [7, 2, 1, "", "clear_dialog"], [7, 2, 1, "", "close_column"], [7, 2, 1, "", "close_container"], [7, 2, 1, "", "close_navbar"], [7, 2, 1, "", "close_row"], [7, 2, 1, "", "close_stack"], [7, 2, 1, "", "open_column"], [7, 2, 1, "", "open_container"], [7, 2, 1, "", "open_navbar"], [7, 2, 1, "", "open_row"], [7, 2, 1, "", "open_stack"], [7, 2, 1, "", "refresh_dialog"], [7, 2, 1, "", "run_dialog"], [7, 2, 1, "", "set_title"]], "RPA.Browser.Selenium": [[11, 0, 1, "", "Selenium"]], "RPA.Browser.Selenium.Selenium": [[11, 1, 1, "", "AVAILABLE_OPTIONS"], [11, 1, 1, "", "AVAILABLE_SERVICES"], [11, 1, 1, "", "BROWSER_NAMES"], [11, 1, 1, "", "CHROMIUM_BROWSERS"], [11, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [11, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [11, 1, 1, "", "ROBOT_LIBRARY_VERSION"], [11, 1, 1, "", "SUPPORTED_BROWSERS"], [11, 2, 1, "", "add_library_components"], [11, 2, 1, "", "attach_chrome_browser"], [11, 2, 1, "", "clear_all_highlights"], [11, 2, 1, "", "click_button_when_visible"], [11, 2, 1, "", "click_element_if_visible"], [11, 2, 1, "", "click_element_when_clickable"], [11, 2, 1, "", "click_element_when_visible"], [11, 2, 1, "", "does_alert_contain"], [11, 2, 1, "", "does_alert_not_contain"], [11, 2, 1, "", "does_element_contain"], [11, 2, 1, "", "does_frame_contain"], [11, 2, 1, "", "does_location_contain"], [11, 2, 1, "", "does_page_contain"], [11, 2, 1, "", "does_page_contain_button"], [11, 2, 1, "", "does_page_contain_checkbox"], [11, 2, 1, "", "does_page_contain_element"], [11, 2, 1, "", "does_page_contain_image"], [11, 2, 1, "", "does_page_contain_link"], [11, 2, 1, "", "does_page_contain_list"], [11, 2, 1, "", "does_page_contain_radio_button"], [11, 2, 1, "", "does_page_contain_textfield"], [11, 2, 1, "", "does_table_cell_contain"], [11, 2, 1, "", "does_table_column_contain"], [11, 2, 1, "", "does_table_contain"], [11, 2, 1, "", "does_table_footer_contain"], [11, 2, 1, "", "does_table_header_contain"], [11, 2, 1, "", "does_table_row_contain"], [11, 2, 1, "", "does_textarea_contain"], [11, 2, 1, "", "does_textfield_contain"], [11, 3, 1, "", "driver"], [11, 2, 1, "", "execute_cdp"], [11, 2, 1, "", "failure_occurred"], [11, 2, 1, "", "find_element"], [11, 2, 1, "", "find_elements"], [11, 2, 1, "", "get_browser_capabilities"], [11, 2, 1, "", "get_element_status"], [11, 2, 1, "", "get_keyword_arguments"], [11, 2, 1, "", "get_keyword_documentation"], [11, 2, 1, "", "get_keyword_names"], [11, 2, 1, "", "get_keyword_source"], [11, 2, 1, "", "get_keyword_tags"], [11, 2, 1, "", "get_keyword_types"], [11, 2, 1, "", "get_testability_status"], [11, 2, 1, "", "get_webelement"], [11, 2, 1, "", "highlight_elements"], [11, 2, 1, "", "input_text_when_element_is_visible"], [11, 2, 1, "", "is_alert_present"], [11, 2, 1, "", "is_checkbox_selected"], [11, 3, 1, "", "is_chromium"], [11, 2, 1, "", "is_element_attribute_equal_to"], [11, 2, 1, "", "is_element_disabled"], [11, 2, 1, "", "is_element_enabled"], [11, 2, 1, "", "is_element_focused"], [11, 2, 1, "", "is_element_text"], [11, 2, 1, "", "is_element_visible"], [11, 2, 1, "", "is_list_selected"], [11, 2, 1, "", "is_list_selection"], [11, 2, 1, "", "is_location"], [11, 2, 1, "", "is_radio_button_selected"], [11, 2, 1, "", "is_radio_button_set_to"], [11, 2, 1, "", "is_textarea_value"], [11, 2, 1, "", "is_textfield_value"], [11, 2, 1, "", "is_title"], [11, 3, 1, "", "location"], [11, 2, 1, "", "normalize_options"], [11, 2, 1, "", "open_available_browser"], [11, 2, 1, "", "open_chrome_browser"], [11, 2, 1, "", "open_headless_chrome_browser"], [11, 2, 1, "", "open_user_browser"], [11, 2, 1, "", "print_to_pdf"], [11, 2, 1, "", "register_driver"], [11, 2, 1, "", "run_keyword"], [11, 2, 1, "", "screenshot"], [11, 2, 1, "", "set_download_directory"], [11, 2, 1, "", "set_element_attribute"], [11, 2, 1, "", "wait_and_click_button"]], "RPA.Calendar": [[13, 0, 1, "", "Calendar"]], "RPA.Calendar.Calendar": [[13, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [13, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [13, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [13, 2, 1, "", "add_custom_holidays"], [13, 2, 1, "", "compare_times"], [13, 2, 1, "", "create_time"], [13, 2, 1, "", "first_business_day_of_the_month"], [13, 2, 1, "", "get_iso_calendar"], [13, 2, 1, "", "is_the_date_business_day"], [13, 2, 1, "", "is_the_date_holiday"], [13, 2, 1, "", "last_business_day_of_the_month"], [13, 2, 1, "", "reset_custom_holidays"], [13, 2, 1, "", "return_holidays"], [13, 2, 1, "", "return_next_business_day"], [13, 2, 1, "", "return_previous_business_day"], [13, 2, 1, "", "set_business_days"], [13, 2, 1, "", "set_locale"], [13, 2, 1, "", "sort_list_of_dates"], [13, 2, 1, "", "time_difference"], [13, 2, 1, "", "time_difference_between_timezones"], [13, 2, 1, "", "time_difference_in_days"], [13, 2, 1, "", "time_difference_in_hours"], [13, 2, 1, "", "time_difference_in_minutes"], [13, 2, 1, "", "time_difference_in_months"], [13, 2, 1, "", "time_now"]], "RPA.Cloud.AWS": [[15, 0, 1, "", "AWS"]], "RPA.Cloud.AWS.AWS": [[15, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [15, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [15, 2, 1, "", "analyze_document"], [15, 2, 1, "", "assume_role"], [15, 1, 1, "", "clients"], [15, 2, 1, "", "convert_textract_response_to_model"], [15, 2, 1, "", "create_bucket"], [15, 2, 1, "", "create_queue"], [15, 2, 1, "", "create_redshift_statement_parameters"], [15, 2, 1, "", "delete_bucket"], [15, 2, 1, "", "delete_files"], [15, 2, 1, "", "delete_message"], [15, 2, 1, "", "delete_queue"], [15, 2, 1, "", "describe_redshift_table"], [15, 2, 1, "", "detect_document_text"], [15, 2, 1, "", "detect_entities"], [15, 2, 1, "", "detect_sentiment"], [15, 2, 1, "", "download_files"], [15, 2, 1, "", "execute_redshift_statement"], [15, 2, 1, "", "execute_redshift_statement_asyncronously"], [15, 2, 1, "", "generate_presigned_url"], [15, 2, 1, "", "get_cells"], [15, 2, 1, "", "get_document_analysis"], [15, 2, 1, "", "get_document_text_detection"], [15, 2, 1, "", "get_pages_and_text"], [15, 2, 1, "", "get_redshift_statement_results"], [15, 2, 1, "", "get_tables"], [15, 2, 1, "", "get_words"], [15, 2, 1, "", "init_comprehend_client"], [15, 2, 1, "", "init_redshift_data_client"], [15, 2, 1, "", "init_s3_client"], [15, 2, 1, "", "init_sqs_client"], [15, 2, 1, "", "init_sts_client"], [15, 2, 1, "", "init_textract_client"], [15, 2, 1, "", "list_buckets"], [15, 2, 1, "", "list_files"], [15, 2, 1, "", "list_redshift_databases"], [15, 2, 1, "", "list_redshift_schemas"], [15, 2, 1, "", "list_redshift_tables"], [15, 1, 1, "", "logger"], [15, 2, 1, "", "receive_message"], [15, 1, 1, "", "region"], [15, 1, 1, "", "robocorp_vault_name"], [15, 2, 1, "", "send_message"], [15, 1, 1, "", "services"], [15, 2, 1, "", "set_robocorp_vault"], [15, 2, 1, "", "start_document_analysis"], [15, 2, 1, "", "start_document_text_detection"], [15, 2, 1, "", "upload_file"], [15, 2, 1, "", "upload_files"]], "RPA.Cloud.Azure": [[17, 0, 1, "", "Azure"]], "RPA.Cloud.Azure.Azure": [[17, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [17, 1, 1, "", "ROBOT_LIBRARY_SCOPE"]], "RPA.Cloud.Google": [[19, 0, 1, "", "Google"]], "RPA.Cloud.Google.Google": [[19, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [19, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [19, 2, 1, "", "add_attachment_to_message"], [19, 2, 1, "", "add_drive_share"], [19, 2, 1, "", "analyze_sentiment"], [19, 2, 1, "", "annotate_image"], [19, 2, 1, "", "annotate_video"], [19, 2, 1, "", "classify_text"], [19, 2, 1, "", "clear_sheet_values"], [19, 2, 1, "", "copy_sheet"], [19, 2, 1, "", "copy_spreadsheet"], [19, 2, 1, "", "create_drive_directory"], [19, 2, 1, "", "create_message"], [19, 2, 1, "", "create_sheet"], [19, 2, 1, "", "create_spreadsheet"], [19, 2, 1, "", "create_storage_bucket"], [19, 2, 1, "", "delete_drive_file"], [19, 2, 1, "", "delete_sheet"], [19, 2, 1, "", "delete_storage_bucket"], [19, 2, 1, "", "delete_storage_files"], [19, 2, 1, "", "detect_document"], [19, 2, 1, "", "detect_labels"], [19, 2, 1, "", "detect_tables"], [19, 2, 1, "", "detect_text"], [19, 2, 1, "", "download_drive_files"], [19, 2, 1, "", "download_storage_files"], [19, 2, 1, "", "export_drive_file"], [19, 2, 1, "", "face_detection"], [19, 2, 1, "", "generic_spreadsheet_batch_update"], [19, 2, 1, "", "get_all_sheet_values"], [19, 2, 1, "", "get_document_entities"], [19, 2, 1, "", "get_document_languages"], [19, 2, 1, "", "get_drive_file_by_id"], [19, 2, 1, "", "get_drive_folder_id"], [19, 2, 1, "", "get_sheet_by_name"], [19, 2, 1, "", "get_sheet_formulas"], [19, 2, 1, "", "get_sheet_values"], [19, 2, 1, "", "get_spreadsheet_basic_information"], [19, 2, 1, "", "get_spreadsheet_details"], [19, 2, 1, "", "get_storage_bucket"], [19, 2, 1, "", "handle_mimetypes"], [19, 2, 1, "", "init_apps_script"], [19, 2, 1, "", "init_document_ai"], [19, 2, 1, "", "init_drive"], [19, 2, 1, "", "init_gmail"], [19, 2, 1, "", "init_natural_language"], [19, 2, 1, "", "init_sheets"], [19, 2, 1, "", "init_speech_to_text"], [19, 2, 1, "", "init_storage"], [19, 2, 1, "", "init_text_to_speech"], [19, 2, 1, "", "init_translation"], [19, 2, 1, "", "init_video_intelligence"], [19, 2, 1, "", "init_vision"], [19, 2, 1, "", "insert_sheet_values"], [19, 2, 1, "", "list_messages"], [19, 2, 1, "", "list_processors"], [19, 2, 1, "", "list_shared_drive_files"], [19, 2, 1, "", "list_storage_buckets"], [19, 2, 1, "", "list_storage_files"], [19, 2, 1, "", "list_supported_voices"], [19, 2, 1, "", "load_document_response"], [19, 2, 1, "", "move_drive_file"], [19, 2, 1, "", "parse_parts"], [19, 2, 1, "", "process_document"], [19, 2, 1, "", "recognize_text_from_audio"], [19, 2, 1, "", "remove_all_drive_shares"], [19, 2, 1, "", "remove_drive_share_by_criteria"], [19, 2, 1, "", "remove_drive_share_by_permission_id"], [19, 2, 1, "", "rename_sheet"], [19, 2, 1, "", "run_script"], [19, 2, 1, "", "save_document_response"], [19, 2, 1, "", "search_drive_files"], [19, 2, 1, "", "send_message"], [19, 2, 1, "", "set_audio_type"], [19, 2, 1, "", "set_headers_to_message_dict"], [19, 2, 1, "", "set_image_type"], [19, 2, 1, "", "set_list_parameters"], [19, 2, 1, "", "set_robocorp_vault"], [19, 2, 1, "", "synthesize_speech"], [19, 2, 1, "", "to_A1_notation"], [19, 2, 1, "", "to_column_letter"], [19, 2, 1, "", "translate"], [19, 2, 1, "", "update_drive_file"], [19, 2, 1, "", "update_sheet_values"], [19, 2, 1, "", "upload_drive_file"], [19, 2, 1, "", "upload_storage_file"], [19, 2, 1, "", "upload_storage_files"]], "RPA.Crypto": [[21, 0, 1, "", "Crypto"]], "RPA.Crypto.Crypto": [[21, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [21, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [21, 2, 1, "", "decrypt_file"], [21, 2, 1, "", "decrypt_string"], [21, 2, 1, "", "encrypt_file"], [21, 2, 1, "", "encrypt_string"], [21, 2, 1, "", "generate_key"], [21, 2, 1, "", "hash_file"], [21, 2, 1, "", "hash_string"], [21, 2, 1, "", "use_encryption_key"], [21, 2, 1, "", "use_encryption_key_from_vault"]], "RPA.Database": [[23, 0, 1, "", "Database"]], "RPA.Database.Database": [[23, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [23, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [23, 2, 1, "", "call_stored_procedure"], [23, 2, 1, "", "connect_to_database"], [23, 2, 1, "", "description"], [23, 2, 1, "", "disconnect_from_database"], [23, 2, 1, "", "execute_sql_script"], [23, 2, 1, "", "get_number_of_rows"], [23, 2, 1, "", "get_rows"], [23, 2, 1, "", "query"], [23, 2, 1, "", "set_auto_commit"]], "RPA.Desktop.Clipboard": [[27, 0, 1, "", "Clipboard"]], "RPA.Desktop.Clipboard.Clipboard": [[27, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [27, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [27, 2, 1, "", "clear_clipboard"], [27, 2, 1, "", "copy_to_clipboard"], [27, 2, 1, "", "paste_from_clipboard"]], "RPA.Desktop": [[25, 0, 1, "", "Desktop"]], "RPA.Desktop.Desktop": [[25, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [25, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [25, 2, 1, "", "add_library_components"], [25, 2, 1, "", "get_keyword_arguments"], [25, 2, 1, "", "get_keyword_documentation"], [25, 2, 1, "", "get_keyword_names"], [25, 2, 1, "", "get_keyword_source"], [25, 2, 1, "", "get_keyword_tags"], [25, 2, 1, "", "get_keyword_types"], [25, 2, 1, "", "run_keyword"]], "RPA.Desktop.OperatingSystem": [[29, 0, 1, "", "OperatingSystem"]], "RPA.Desktop.OperatingSystem.OperatingSystem": [[29, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [29, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [29, 2, 1, "", "boot_time_in_seconds_from_epoch"], [29, 2, 1, "", "get_boot_time"], [29, 2, 1, "", "get_machine_name"], [29, 2, 1, "", "get_memory_stats"], [29, 2, 1, "", "get_username"], [29, 2, 1, "", "kill_process"], [29, 2, 1, "", "kill_process_by_pid"], [29, 2, 1, "", "process_exists"], [29, 2, 1, "", "process_id_exists"], [29, 2, 1, "", "put_system_to_sleep"]], "RPA.Desktop.Windows": [[31, 0, 1, "", "Windows"]], "RPA.Desktop.Windows.Windows": [[31, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [31, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [31, 2, 1, "", "boot_time_in_seconds_from_epoch"], [31, 2, 1, "", "calculate_rectangle_center"], [31, 2, 1, "", "click_type"], [31, 2, 1, "", "close_all_applications"], [31, 2, 1, "", "connect_by_handle"], [31, 2, 1, "", "connect_by_pid"], [31, 2, 1, "", "drag_and_drop"], [31, 2, 1, "", "find_element"], [31, 2, 1, "", "get_app"], [31, 2, 1, "", "get_boot_time"], [31, 2, 1, "", "get_dialog_rectangle"], [31, 2, 1, "", "get_element"], [31, 2, 1, "", "get_element_center"], [31, 2, 1, "", "get_element_rectangle"], [31, 2, 1, "", "get_element_rich_text"], [31, 2, 1, "", "get_machine_name"], [31, 2, 1, "", "get_memory_stats"], [31, 2, 1, "", "get_open_applications"], [31, 2, 1, "", "get_spaced_string"], [31, 2, 1, "", "get_text"], [31, 2, 1, "", "get_username"], [31, 2, 1, "", "get_window_elements"], [31, 2, 1, "", "get_window_list"], [31, 2, 1, "", "is_element_enabled"], [31, 2, 1, "", "is_element_matching"], [31, 2, 1, "", "is_element_visible"], [31, 2, 1, "", "kill_process"], [31, 2, 1, "", "kill_process_by_pid"], [31, 2, 1, "", "lock_screen"], [31, 2, 1, "", "log_in"], [31, 2, 1, "", "menu_select"], [31, 2, 1, "", "minimize_dialog"], [31, 2, 1, "", "mouse_click"], [31, 2, 1, "", "mouse_click_coords"], [31, 2, 1, "", "mouse_click_image"], [31, 2, 1, "", "open_application"], [31, 2, 1, "", "open_dialog"], [31, 2, 1, "", "open_executable"], [31, 2, 1, "", "open_file"], [31, 2, 1, "", "open_from_search"], [31, 2, 1, "", "open_using_run_dialog"], [31, 2, 1, "", "process_exists"], [31, 2, 1, "", "process_id_exists"], [31, 2, 1, "", "put_system_to_sleep"], [31, 2, 1, "", "quit_application"], [31, 2, 1, "", "refresh_window"], [31, 2, 1, "", "restore_dialog"], [31, 2, 1, "", "screenshot"], [31, 2, 1, "", "send_keys"], [31, 2, 1, "", "send_keys_to_input"], [31, 2, 1, "", "set_automation_speed"], [31, 2, 1, "", "set_windows_backend"], [31, 2, 1, "", "switch_to_application"], [31, 2, 1, "", "type_into"], [31, 2, 1, "", "type_keys"], [31, 2, 1, "", "wait_for_element"]], "RPA.DocumentAI.Base64AI": [[35, 0, 1, "", "Base64AI"]], "RPA.DocumentAI.Base64AI.Base64AI": [[35, 1, 1, "", "BASE_URL"], [35, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [35, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [35, 2, 1, "", "filter_matching_signatures"], [35, 2, 1, "", "get_fields_from_prediction_result"], [35, 2, 1, "", "get_matching_signatures"], [35, 2, 1, "", "get_signature_image"], [35, 2, 1, "", "get_user_data"], [35, 2, 1, "", "scan_document_file"], [35, 2, 1, "", "scan_document_url"], [35, 2, 1, "", "set_authorization"]], "RPA.DocumentAI.DocumentAI": [[33, 0, 1, "", "DocumentAI"]], "RPA.DocumentAI.DocumentAI.DocumentAI": [[33, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [33, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [33, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [33, 3, 1, "", "engine"], [33, 2, 1, "", "get_result"], [33, 2, 1, "", "init_engine"], [33, 2, 1, "", "predict"], [33, 3, 1, "", "result"], [33, 2, 1, "", "switch_engine"]], "RPA.DocumentAI.Nanonets": [[37, 0, 1, "", "Nanonets"]], "RPA.DocumentAI.Nanonets.Nanonets": [[37, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [37, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [37, 2, 1, "", "get_all_models"], [37, 2, 1, "", "get_fields_from_prediction_result"], [37, 2, 1, "", "get_tables_from_prediction_result"], [37, 2, 1, "", "ocr_fulltext"], [37, 2, 1, "", "predict_file"], [37, 2, 1, "", "set_authorization"]], "RPA.Email.Exchange": [[39, 0, 1, "", "Exchange"]], "RPA.Email.Exchange.Exchange": [[39, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [39, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [39, 1, 1, "", "TO_PROTECT"], [39, 2, 1, "", "authorize"], [39, 2, 1, "", "create_folder"], [39, 2, 1, "", "delete_folder"], [39, 2, 1, "", "delete_message"], [39, 2, 1, "", "empty_folder"], [39, 2, 1, "", "forward_message"], [39, 2, 1, "", "generate_oauth_url"], [39, 2, 1, "", "get_oauth_token"], [39, 2, 1, "", "list_messages"], [39, 2, 1, "", "list_unread_messages"], [39, 2, 1, "", "move_message"], [39, 2, 1, "", "move_messages"], [39, 2, 1, "", "refresh_oauth_token"], [39, 2, 1, "", "rename_folder"], [39, 2, 1, "", "save_attachments"], [39, 2, 1, "", "save_message"], [39, 2, 1, "", "send_message"], [39, 2, 1, "", "send_reply_message"], [39, 2, 1, "", "wait_for_message"]], "RPA.Email.ImapSmtp": [[41, 0, 1, "", "ImapSmtp"]], "RPA.Email.ImapSmtp.ImapSmtp": [[41, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [41, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [41, 1, 1, "", "TO_PROTECT"], [41, 2, 1, "", "add_gmail_labels"], [41, 2, 1, "", "authorize"], [41, 2, 1, "", "authorize_imap"], [41, 2, 1, "", "authorize_smtp"], [41, 2, 1, "", "convert_eml_file_into_message"], [41, 2, 1, "", "create_folder"], [41, 2, 1, "", "delete_folder"], [41, 2, 1, "", "delete_message"], [41, 2, 1, "", "delete_messages"], [41, 2, 1, "", "do_message_actions"], [41, 2, 1, "", "email_to_document"], [41, 2, 1, "", "flag_messages"], [41, 2, 1, "", "generate_oauth_string"], [41, 2, 1, "", "generate_oauth_url"], [41, 2, 1, "", "get_decoded_email_body"], [41, 2, 1, "", "get_folder_list"], [41, 2, 1, "", "get_oauth_token"], [41, 2, 1, "", "list_messages"], [41, 2, 1, "", "mark_as_read"], [41, 2, 1, "", "mark_as_unread"], [41, 2, 1, "", "move_messages"], [41, 2, 1, "", "move_messages_by_ids"], [41, 2, 1, "", "refresh_oauth_token"], [41, 2, 1, "", "remove_gmail_labels"], [41, 2, 1, "", "rename_folder"], [41, 2, 1, "", "save_attachment"], [41, 2, 1, "", "save_attachments"], [41, 2, 1, "", "save_messages"], [41, 2, 1, "", "select_folder"], [41, 2, 1, "", "send_message"], [41, 2, 1, "", "send_smtp_hello"], [41, 2, 1, "", "set_credentials"], [41, 2, 1, "", "unflag_messages"], [41, 2, 1, "", "wait_for_message"]], "RPA.Excel.Application": [[43, 0, 1, "", "Application"]], "RPA.Excel.Application.Application": [[43, 1, 1, "", "APP_DISPATCH"], [43, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [43, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [43, 2, 1, "", "add_new_sheet"], [43, 2, 1, "", "add_new_workbook"], [43, 3, 1, "", "app"], [43, 2, 1, "", "close_document"], [43, 2, 1, "", "create_pivot_field"], [43, 2, 1, "", "create_pivot_table"], [43, 2, 1, "", "create_table"], [43, 2, 1, "", "export_as_pdf"], [43, 2, 1, "", "find"], [43, 2, 1, "", "find_first_available_cell"], [43, 2, 1, "", "find_first_available_row"], [43, 2, 1, "", "get_pivot_tables"], [43, 2, 1, "", "get_range"], [43, 2, 1, "", "list_tables"], [43, 2, 1, "", "merge_range"], [43, 2, 1, "", "open_application"], [43, 2, 1, "", "open_workbook"], [43, 2, 1, "", "quit_application"], [43, 2, 1, "", "read_from_cells"], [43, 2, 1, "", "remove_hidden_columns_and_rows"], [43, 2, 1, "", "run_macro"], [43, 2, 1, "", "save_excel"], [43, 2, 1, "", "save_excel_as"], [43, 2, 1, "", "set_active_worksheet"], [43, 2, 1, "", "set_object_property"], [43, 2, 1, "", "unmerge_range"], [43, 2, 1, "", "write_data_to_range"], [43, 2, 1, "", "write_to_cells"]], "RPA.Excel.Files": [[45, 0, 1, "", "Files"]], "RPA.Excel.Files.Files": [[45, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [45, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [45, 2, 1, "", "append_rows_to_worksheet"], [45, 2, 1, "", "auto_size_columns"], [45, 2, 1, "", "clear_cell_range"], [45, 2, 1, "", "close_workbook"], [45, 2, 1, "", "copy_cell_values"], [45, 2, 1, "", "create_workbook"], [45, 2, 1, "", "create_worksheet"], [45, 2, 1, "", "delete_columns"], [45, 2, 1, "", "delete_rows"], [45, 2, 1, "", "find_empty_row"], [45, 2, 1, "", "get_active_worksheet"], [45, 2, 1, "", "get_cell_value"], [45, 2, 1, "", "get_worksheet_value"], [45, 2, 1, "", "hide_columns"], [45, 2, 1, "", "insert_columns_after"], [45, 2, 1, "", "insert_columns_before"], [45, 2, 1, "", "insert_image_to_worksheet"], [45, 2, 1, "", "insert_rows_after"], [45, 2, 1, "", "insert_rows_before"], [45, 2, 1, "", "list_worksheets"], [45, 2, 1, "", "move_range"], [45, 2, 1, "", "open_workbook"], [45, 2, 1, "", "read_worksheet"], [45, 2, 1, "", "read_worksheet_as_table"], [45, 2, 1, "", "remove_worksheet"], [45, 2, 1, "", "rename_worksheet"], [45, 2, 1, "", "save_workbook"], [45, 2, 1, "", "set_active_worksheet"], [45, 2, 1, "", "set_cell_format"], [45, 2, 1, "", "set_cell_formula"], [45, 2, 1, "", "set_cell_value"], [45, 2, 1, "", "set_cell_values"], [45, 2, 1, "", "set_styles"], [45, 2, 1, "", "set_worksheet_value"], [45, 2, 1, "", "unhide_columns"], [45, 2, 1, "", "worksheet_exists"]], "RPA.FTP": [[49, 0, 1, "", "FTP"]], "RPA.FTP.FTP": [[49, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [49, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [49, 2, 1, "", "abort"], [49, 2, 1, "", "close"], [49, 2, 1, "", "connect"], [49, 2, 1, "", "cwd"], [49, 2, 1, "", "delete"], [49, 2, 1, "", "download"], [49, 2, 1, "", "file_size"], [49, 2, 1, "", "get_welcome_message"], [49, 2, 1, "", "list_files"], [49, 2, 1, "", "mkd"], [49, 2, 1, "", "pwd"], [49, 2, 1, "", "quit"], [49, 2, 1, "", "rename"], [49, 2, 1, "", "rmd"], [49, 2, 1, "", "send_command"], [49, 2, 1, "", "set_ascii_mode"], [49, 2, 1, "", "set_binary_mode"], [49, 2, 1, "", "set_debug_level"], [49, 2, 1, "", "upload"]], "RPA.FileSystem": [[47, 0, 1, "", "FileSystem"]], "RPA.FileSystem.FileSystem": [[47, 1, 1, "", "PATH_TYPE"], [47, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [47, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [47, 2, 1, "", "absolute_path"], [47, 2, 1, "", "append_to_binary_file"], [47, 2, 1, "", "append_to_file"], [47, 2, 1, "", "change_file_extension"], [47, 2, 1, "", "copy_directory"], [47, 2, 1, "", "copy_file"], [47, 2, 1, "", "copy_files"], [47, 2, 1, "", "create_binary_file"], [47, 2, 1, "", "create_directory"], [47, 2, 1, "", "create_file"], [47, 2, 1, "", "does_directory_exist"], [47, 2, 1, "", "does_directory_not_exist"], [47, 2, 1, "", "does_file_exist"], [47, 2, 1, "", "does_file_not_exist"], [47, 2, 1, "", "empty_directory"], [47, 2, 1, "", "find_files"], [47, 2, 1, "", "get_file_creation_date"], [47, 2, 1, "", "get_file_extension"], [47, 2, 1, "", "get_file_modified_date"], [47, 2, 1, "", "get_file_name"], [47, 2, 1, "", "get_file_owner"], [47, 2, 1, "", "get_file_size"], [47, 2, 1, "", "get_file_stem"], [47, 2, 1, "", "is_directory_empty"], [47, 2, 1, "", "is_directory_not_empty"], [47, 2, 1, "", "is_file_empty"], [47, 2, 1, "", "is_file_not_empty"], [47, 2, 1, "", "join_path"], [47, 2, 1, "", "list_directories_in_directory"], [47, 2, 1, "", "list_files_in_directory"], [47, 2, 1, "", "log_directory_tree"], [47, 2, 1, "", "move_directory"], [47, 2, 1, "", "move_file"], [47, 2, 1, "", "move_files"], [47, 2, 1, "", "normalize_path"], [47, 2, 1, "", "read_binary_file"], [47, 2, 1, "", "read_file"], [47, 2, 1, "", "remove_directory"], [47, 2, 1, "", "remove_file"], [47, 2, 1, "", "remove_files"], [47, 2, 1, "", "run_keyword_if_file_exists"], [47, 2, 1, "", "touch_file"], [47, 2, 1, "", "wait_until_created"], [47, 2, 1, "", "wait_until_modified"], [47, 2, 1, "", "wait_until_removed"]], "RPA.HTTP": [[51, 0, 1, "", "HTTP"]], "RPA.HTTP.HTTP": [[51, 1, 1, "", "DEFAULT_RETRY_METHOD_LIST"], [51, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [51, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [51, 2, 1, "", "check_vulnerabilities"], [51, 2, 1, "", "create_client_cert_session"], [51, 2, 1, "", "create_custom_session"], [51, 2, 1, "", "create_digest_session"], [51, 2, 1, "", "create_ntlm_session"], [51, 2, 1, "", "create_session"], [51, 2, 1, "", "delete_all_sessions"], [51, 2, 1, "", "delete_on_session"], [51, 2, 1, "", "delete_request"], [51, 2, 1, "", "download"], [51, 2, 1, "", "get_current_session_alias"], [51, 2, 1, "", "get_file_for_streaming_upload"], [51, 2, 1, "", "get_on_session"], [51, 2, 1, "", "get_request"], [51, 2, 1, "", "head_on_session"], [51, 2, 1, "", "head_request"], [51, 2, 1, "", "http_get"], [51, 2, 1, "", "options_on_session"], [51, 2, 1, "", "options_request"], [51, 2, 1, "", "patch_on_session"], [51, 2, 1, "", "patch_request"], [51, 2, 1, "", "post_on_session"], [51, 2, 1, "", "post_request"], [51, 2, 1, "", "put_on_session"], [51, 2, 1, "", "put_request"], [51, 2, 1, "", "request_should_be_successful"], [51, 2, 1, "", "session_exists"], [51, 2, 1, "", "session_less_delete"], [51, 2, 1, "", "session_less_get"], [51, 2, 1, "", "session_less_head"], [51, 2, 1, "", "session_less_options"], [51, 2, 1, "", "session_less_patch"], [51, 2, 1, "", "session_less_post"], [51, 2, 1, "", "session_less_put"], [51, 2, 1, "", "status_should_be"], [51, 2, 1, "", "to_json"], [51, 2, 1, "", "update_session"]], "RPA.Hubspot": [[53, 0, 1, "", "Hubspot"]], "RPA.Hubspot.Hubspot": [[53, 1, 1, "", "BUILTIN_PLURAL_MAP"], [53, 1, 1, "", "BUILTIN_SINGULAR_MAP"], [53, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [53, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [53, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [53, 2, 1, "", "add_input_to_batch"], [53, 2, 1, "", "auth_with_api_key"], [53, 2, 1, "", "auth_with_token"], [53, 3, 1, "", "batch_input"], [53, 2, 1, "", "clear_current_batch"], [53, 2, 1, "", "create_new_batch"], [53, 2, 1, "", "create_object"], [53, 2, 1, "", "execute_batch"], [53, 2, 1, "", "extend_batch_with_inputs"], [53, 2, 1, "", "get_current_batch"], [53, 2, 1, "", "get_current_batch_inputs"], [53, 2, 1, "", "get_current_stage_of_object"], [53, 2, 1, "", "get_object"], [53, 2, 1, "", "get_owner_by_id"], [53, 2, 1, "", "get_owner_of_object"], [53, 2, 1, "", "get_pipeline"], [53, 2, 1, "", "get_pipeline_stages"], [53, 2, 1, "", "get_user"], [53, 2, 1, "", "list_associations"], [53, 2, 1, "", "list_pipelines"], [53, 3, 1, "", "pipelines"], [53, 3, 1, "", "schemas"], [53, 2, 1, "", "search_for_objects"], [53, 2, 1, "", "set_association"], [53, 2, 1, "", "set_current_batch_input"], [53, 2, 1, "", "update_object"]], "RPA.Images": [[55, 0, 1, "", "Images"]], "RPA.Images.Images": [[55, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [55, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [55, 2, 1, "", "crop_image"], [55, 2, 1, "", "find_template_in_image"], [55, 2, 1, "", "get_pixel_color_in_image"], [55, 2, 1, "", "show_region_in_image"]], "RPA.JSON": [[59, 0, 1, "", "JSON"]], "RPA.JSON.JSON": [[59, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [59, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [59, 2, 1, "", "add_to_json"], [59, 2, 1, "", "convert_json_to_string"], [59, 2, 1, "", "convert_string_to_json"], [59, 2, 1, "", "delete_from_json"], [59, 2, 1, "", "get_value_from_json"], [59, 2, 1, "", "get_values_from_json"], [59, 2, 1, "", "load_json_from_file"], [59, 2, 1, "", "save_json_to_file"], [59, 2, 1, "", "update_value_to_json"]], "RPA.JavaAccessBridge": [[57, 0, 1, "", "JavaAccessBridge"]], "RPA.JavaAccessBridge.JavaAccessBridge": [[57, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [57, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [57, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [57, 2, 1, "", "application_refresh"], [57, 2, 1, "", "call_element_action"], [57, 2, 1, "", "click_coordinates"], [57, 2, 1, "", "click_element"], [57, 2, 1, "", "click_push_button"], [57, 2, 1, "", "close_java_window"], [57, 2, 1, "", "get_element_actions"], [57, 2, 1, "", "get_element_text"], [57, 2, 1, "", "get_elements"], [57, 2, 1, "", "get_locator_tree"], [57, 2, 1, "", "get_version_info"], [57, 2, 1, "", "highlight_element"], [57, 2, 1, "", "list_java_windows"], [57, 2, 1, "", "press_keys"], [57, 2, 1, "", "print_element_tree"], [57, 2, 1, "", "print_locator_tree"], [57, 2, 1, "", "read_table"], [57, 2, 1, "", "refresh_element"], [57, 2, 1, "", "select_menu"], [57, 2, 1, "", "select_window"], [57, 2, 1, "", "select_window_by_pid"], [57, 2, 1, "", "select_window_by_title"], [57, 2, 1, "", "set_display_scale_factor"], [57, 2, 1, "", "set_mouse_position"], [57, 2, 1, "", "shutdown_jab"], [57, 2, 1, "", "toggle_drop_down"], [57, 2, 1, "", "type_text"], [57, 2, 1, "", "wait_until_element_exists"], [57, 2, 1, "", "wait_until_element_is_focused"], [57, 2, 1, "", "wait_until_element_text_contains"], [57, 2, 1, "", "wait_until_element_text_equals"]], "RPA.MFA": [[61, 0, 1, "", "MFA"]], "RPA.MFA.MFA": [[61, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [61, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [61, 2, 1, "", "generate_oauth_url"], [61, 2, 1, "", "get_counter_based_otp"], [61, 2, 1, "", "get_oauth_token"], [61, 2, 1, "", "get_time_based_otp"], [61, 3, 1, "", "oauth"], [61, 2, 1, "", "refresh_oauth_token"], [61, 2, 1, "", "set_counter_based_otp"], [61, 2, 1, "", "set_time_based_otp"], [61, 2, 1, "", "use_mfa_secret_from_vault"]], "RPA.MSGraph": [[63, 0, 1, "", "MSGraph"]], "RPA.MSGraph.MSGraph": [[63, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [63, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [63, 2, 1, "", "authorize_and_get_token"], [63, 2, 1, "", "configure_msgraph_client"], [63, 2, 1, "", "create_sharepoint_list"], [63, 2, 1, "", "download_file_from_onedrive"], [63, 2, 1, "", "download_file_from_share_link"], [63, 2, 1, "", "download_file_from_sharepoint"], [63, 2, 1, "", "download_folder_from_onedrive"], [63, 2, 1, "", "find_onedrive_file"], [63, 2, 1, "", "generate_oauth_authorization_url"], [63, 2, 1, "", "get_drive_instance"], [63, 2, 1, "", "get_file_instance"], [63, 2, 1, "", "get_folder_instance"], [63, 2, 1, "", "get_items_from_sharepoint_list"], [63, 2, 1, "", "get_me"], [63, 2, 1, "", "get_scopes"], [63, 2, 1, "", "get_sharepoint_site"], [63, 2, 1, "", "list_files_in_onedrive_folder"], [63, 2, 1, "", "list_files_in_sharepoint_site_drive"], [63, 2, 1, "", "list_sharepoint_site_drives"], [63, 2, 1, "", "refresh_oauth_token"], [63, 2, 1, "", "search_for_users"], [63, 2, 1, "", "upload_file_to_onedrive"]], "RPA.Netsuite": [[65, 0, 1, "", "Netsuite"]], "RPA.Netsuite.Netsuite": [[65, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [65, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [65, 2, 1, "", "connect"], [65, 2, 1, "", "get_accounts"], [65, 2, 1, "", "get_classifications"], [65, 2, 1, "", "get_currencies"], [65, 2, 1, "", "get_currency"], [65, 2, 1, "", "get_departments"], [65, 2, 1, "", "get_locations"], [65, 2, 1, "", "get_vendor_bills"], [65, 2, 1, "", "get_vendors"], [65, 2, 1, "", "login"], [65, 2, 1, "", "netsuite_get"], [65, 2, 1, "", "netsuite_get_all"], [65, 2, 1, "", "netsuite_search"], [65, 2, 1, "", "netsuite_search_all"]], "RPA.Notifier": [[67, 0, 1, "", "Notifier"]], "RPA.Notifier.Notifier": [[67, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [67, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [67, 2, 1, "", "generic_notify"], [67, 2, 1, "", "notify_email"], [67, 2, 1, "", "notify_gmail"], [67, 2, 1, "", "notify_pushover"], [67, 2, 1, "", "notify_slack"], [67, 2, 1, "", "notify_telegram"], [67, 2, 1, "", "notify_twilio"]], "RPA.OpenAI": [[69, 0, 1, "", "OpenAI"]], "RPA.OpenAI.OpenAI": [[69, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [69, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [69, 2, 1, "", "authorize_to_azure_openai"], [69, 2, 1, "", "authorize_to_openai"], [69, 2, 1, "", "chat_completion_create"], [69, 2, 1, "", "completion_create"], [69, 2, 1, "", "image_create"], [69, 2, 1, "", "image_create_variation"]], "RPA.Outlook.Application": [[71, 0, 1, "", "Application"]], "RPA.Outlook.Application.Application": [[71, 1, 1, "", "APP_DISPATCH"], [71, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [71, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [71, 3, 1, "", "app"], [71, 2, 1, "", "close_document"], [71, 2, 1, "", "get_emails"], [71, 2, 1, "", "mark_email_as_read"], [71, 2, 1, "", "move_emails"], [71, 2, 1, "", "open_application"], [71, 2, 1, "", "quit_application"], [71, 2, 1, "", "save_email_attachments"], [71, 2, 1, "", "send_email"], [71, 2, 1, "", "set_object_property"], [71, 2, 1, "", "wait_for_email"]], "RPA.PDF": [[73, 0, 1, "", "PDF"]], "RPA.PDF.PDF": [[73, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [73, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [73, 2, 1, "", "add_library_components"], [73, 2, 1, "", "get_keyword_arguments"], [73, 2, 1, "", "get_keyword_documentation"], [73, 2, 1, "", "get_keyword_names"], [73, 2, 1, "", "get_keyword_source"], [73, 2, 1, "", "get_keyword_tags"], [73, 2, 1, "", "get_keyword_types"], [73, 2, 1, "", "run_keyword"]], "RPA.Robocorp.Process": [[75, 0, 1, "", "Process"]], "RPA.Robocorp.Process.Process": [[75, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [75, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [75, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [75, 3, 1, "", "base_api"], [75, 2, 1, "", "create_input_work_item"], [75, 2, 1, "", "get_process_id_by_name"], [75, 2, 1, "", "get_process_run_status"], [75, 2, 1, "", "get_robot_run_artifact"], [75, 2, 1, "", "get_work_item"], [75, 3, 1, "", "headers"], [75, 2, 1, "", "list_process_run_work_items"], [75, 2, 1, "", "list_process_runs"], [75, 2, 1, "", "list_process_runs_in_workspace"], [75, 2, 1, "", "list_process_work_items"], [75, 2, 1, "", "list_processes"], [75, 2, 1, "", "list_run_artifacts"], [75, 2, 1, "", "process_api"], [75, 2, 1, "", "register_file_upload"], [75, 2, 1, "", "retry_work_item"], [75, 2, 1, "", "set_apikey"], [75, 2, 1, "", "set_credentials"], [75, 2, 1, "", "set_process_id"], [75, 2, 1, "", "set_workspace_id"], [75, 2, 1, "", "start_configured_process"], [75, 2, 1, "", "start_process"], [75, 2, 1, "", "upload_file_to_s3"], [75, 2, 1, "", "workspace_api"]], "RPA.Robocorp.Vault": [[79, 0, 1, "", "Vault"]], "RPA.Robocorp.Vault.Vault": [[79, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [79, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [79, 3, 1, "", "adapter"], [79, 2, 1, "", "get_secret"], [79, 2, 1, "", "set_secret"]], "RPA.Robocorp.WorkItems": [[81, 0, 1, "", "WorkItems"]], "RPA.Robocorp.WorkItems.WorkItems": [[81, 1, 1, "", "EMAIL_BODY_LOADERS"], [81, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [81, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [81, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [81, 1, 1, "", "ROBOT_LISTENER_API_VERSION"], [81, 3, 1, "", "active_input"], [81, 3, 1, "", "adapter"], [81, 2, 1, "", "add_work_item_file"], [81, 2, 1, "", "add_work_item_files"], [81, 2, 1, "", "clear_work_item"], [81, 2, 1, "", "create_output_work_item"], [81, 3, 1, "", "current"], [81, 2, 1, "", "delete_work_item_variables"], [81, 2, 1, "", "for_each_input_work_item"], [81, 2, 1, "", "get_current_work_item"], [81, 2, 1, "", "get_input_work_item"], [81, 2, 1, "", "get_work_item_file"], [81, 2, 1, "", "get_work_item_files"], [81, 2, 1, "", "get_work_item_payload"], [81, 2, 1, "", "get_work_item_variable"], [81, 2, 1, "", "get_work_item_variables"], [81, 1, 1, "", "inputs"], [81, 2, 1, "", "list_work_item_files"], [81, 2, 1, "", "list_work_item_variables"], [81, 1, 1, "", "outputs"], [81, 2, 1, "", "release_input_work_item"], [81, 2, 1, "", "remove_work_item_file"], [81, 2, 1, "", "remove_work_item_files"], [81, 1, 1, "", "root"], [81, 2, 1, "", "save_work_item"], [81, 2, 1, "", "set_current_work_item"], [81, 2, 1, "", "set_task_variables_from_work_item"], [81, 2, 1, "", "set_work_item_payload"], [81, 2, 1, "", "set_work_item_variable"], [81, 2, 1, "", "set_work_item_variables"]], "RPA.RobotLogListener": [[83, 0, 1, "", "RobotLogListener"]], "RPA.RobotLogListener.RobotLogListener": [[83, 1, 1, "", "INFO_LEVEL_KEYWORDS"], [83, 1, 1, "", "KEYWORDS_TO_MUTE"], [83, 1, 1, "", "KEYWORDS_TO_PROTECT"], [83, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [83, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [83, 1, 1, "", "ROBOT_LISTENER_API_VERSION"], [83, 2, 1, "", "end_keyword"], [83, 2, 1, "", "mute_run_on_failure"], [83, 2, 1, "", "only_info_level"], [83, 2, 1, "", "register_protected_keywords"], [83, 2, 1, "", "start_keyword"]], "RPA.SAP": [[87, 0, 1, "", "SAP"]], "RPA.SAP.SAP": [[87, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [87, 2, 1, "", "click_element"], [87, 2, 1, "", "click_toolbar_button"], [87, 2, 1, "", "connect_to_existing_connection"], [87, 2, 1, "", "connect_to_session"], [87, 2, 1, "", "disable_screenshots_on_error"], [87, 2, 1, "", "doubleclick_element"], [87, 2, 1, "", "element_should_be_present"], [87, 2, 1, "", "element_value_should_be"], [87, 2, 1, "", "element_value_should_contain"], [87, 2, 1, "", "enable_screenshots_on_error"], [87, 2, 1, "", "focus_and_click"], [87, 2, 1, "", "focus_and_input_text"], [87, 2, 1, "", "generic_click_element"], [87, 2, 1, "", "generic_input_password"], [87, 2, 1, "", "generic_input_text"], [87, 2, 1, "", "get_cell_value"], [87, 2, 1, "", "get_element_location"], [87, 2, 1, "", "get_element_type"], [87, 2, 1, "", "get_element_type_of_object"], [87, 2, 1, "", "get_row_count"], [87, 2, 1, "", "get_scroll_position"], [87, 2, 1, "", "get_statusbar_type"], [87, 2, 1, "", "get_value"], [87, 2, 1, "", "get_window_title"], [87, 2, 1, "", "input_password"], [87, 2, 1, "", "input_text"], [87, 2, 1, "", "maximize_window"], [87, 2, 1, "", "open_connection"], [87, 2, 1, "", "press_f1"], [87, 2, 1, "", "press_f4"], [87, 2, 1, "", "run_transaction"], [87, 2, 1, "", "scroll"], [87, 2, 1, "", "select_checkbox"], [87, 2, 1, "", "select_context_menu_item"], [87, 2, 1, "", "select_from_list_by_label"], [87, 2, 1, "", "select_node"], [87, 2, 1, "", "select_node_link"], [87, 2, 1, "", "select_radio_button"], [87, 2, 1, "", "select_table_column"], [87, 2, 1, "", "select_table_row"], [87, 2, 1, "", "send_vkey"], [87, 2, 1, "", "set_cell_value"], [87, 2, 1, "", "set_explicit_wait"], [87, 2, 1, "", "set_focus"], [87, 2, 1, "", "take_screenshot"], [87, 2, 1, "", "unselect_checkbox"]], "RPA.Salesforce": [[85, 0, 1, "", "Salesforce"]], "RPA.Salesforce.Salesforce": [[85, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [85, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [85, 1, 1, "", "account"], [85, 2, 1, "", "add_product_into_opportunity"], [85, 2, 1, "", "auth_with_connected_app"], [85, 2, 1, "", "auth_with_token"], [85, 2, 1, "", "create_new_opportunity"], [85, 2, 1, "", "create_salesforce_object"], [85, 2, 1, "", "delete_salesforce_object"], [85, 2, 1, "", "describe_salesforce_object"], [85, 2, 1, "", "execute_apex"], [85, 2, 1, "", "execute_dataloader_insert"], [85, 2, 1, "", "get_dataloader_error_table"], [85, 2, 1, "", "get_dataloader_success_table"], [85, 2, 1, "", "get_domain"], [85, 2, 1, "", "get_opportunity_id"], [85, 2, 1, "", "get_pricebook_entries"], [85, 2, 1, "", "get_pricebook_id"], [85, 2, 1, "", "get_products_in_pricelist"], [85, 2, 1, "", "get_salesforce_object_by_id"], [85, 2, 1, "", "get_salesforce_object_metadata"], [85, 3, 1, "", "instance"], [85, 2, 1, "", "read_dictionary_from_file"], [85, 2, 1, "", "salesforce_query"], [85, 2, 1, "", "salesforce_query_result_as_table"], [85, 3, 1, "", "session_id"], [85, 2, 1, "", "set_account"], [85, 2, 1, "", "set_domain"], [85, 2, 1, "", "set_pricebook"], [85, 2, 1, "", "update_salesforce_object"], [85, 2, 1, "", "upsert_salesforce_object"]], "RPA.Slack": [[89, 0, 1, "", "Slack"]], "RPA.Slack.Slack": [[89, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [89, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [89, 2, 1, "", "slack_message_using_webhook"], [89, 2, 1, "", "slack_raw_message"]], "RPA.Smartsheet": [[91, 0, 1, "", "Smartsheet"]], "RPA.Smartsheet.Smartsheet": [[91, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [91, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [91, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [91, 1, 1, "", "ROW_EXCLUDES"], [91, 1, 1, "", "ROW_INCLUDES"], [91, 1, 1, "", "SEARCH_INCLUDES"], [91, 1, 1, "", "SEARCH_SCOPES"], [91, 1, 1, "", "SHEET_INCLUDES"], [91, 2, 1, "", "add_column"], [91, 2, 1, "", "add_columns"], [91, 2, 1, "", "add_rows"], [91, 2, 1, "", "convert_row_to_dict"], [91, 2, 1, "", "convert_sheet_to_table"], [91, 2, 1, "", "create_sheet"], [91, 2, 1, "", "download_attachment"], [91, 2, 1, "", "get_application_constants"], [91, 2, 1, "", "get_cell_history"], [91, 2, 1, "", "get_current_user"], [91, 2, 1, "", "get_row"], [91, 2, 1, "", "get_sheet"], [91, 2, 1, "", "get_sheet_owner"], [91, 2, 1, "", "list_attachments"], [91, 2, 1, "", "list_columns"], [91, 2, 1, "", "list_sheet_filters"], [91, 2, 1, "", "list_sheets"], [91, 2, 1, "", "refresh_sheet"], [91, 2, 1, "", "search"], [91, 2, 1, "", "set_access_token"], [91, 2, 1, "", "set_max_retry_time"], [91, 2, 1, "", "set_row"], [91, 2, 1, "", "set_rows"], [91, 3, 1, "", "sheets"], [91, 2, 1, "", "unselect_current_sheet"], [91, 2, 1, "", "update_column"]], "RPA.Tables": [[93, 0, 1, "", "Tables"]], "RPA.Tables.Tables": [[93, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [93, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [93, 2, 1, "", "add_table_column"], [93, 2, 1, "", "add_table_row"], [93, 2, 1, "", "clear_table"], [93, 2, 1, "", "copy_table"], [93, 2, 1, "", "create_table"], [93, 2, 1, "", "export_table"], [93, 2, 1, "", "filter_empty_rows"], [93, 2, 1, "", "filter_table_by_column"], [93, 2, 1, "", "filter_table_with_keyword"], [93, 2, 1, "", "find_table_rows"], [93, 2, 1, "", "get_table_cell"], [93, 2, 1, "", "get_table_column"], [93, 2, 1, "", "get_table_dimensions"], [93, 2, 1, "", "get_table_row"], [93, 2, 1, "", "get_table_slice"], [93, 2, 1, "", "group_table_by_column"], [93, 2, 1, "", "map_column_values"], [93, 2, 1, "", "merge_tables"], [93, 2, 1, "", "pop_table_column"], [93, 2, 1, "", "pop_table_row"], [93, 2, 1, "", "read_table_from_csv"], [93, 2, 1, "", "rename_table_columns"], [93, 2, 1, "", "set_row_as_column_names"], [93, 2, 1, "", "set_table_cell"], [93, 2, 1, "", "set_table_column"], [93, 2, 1, "", "set_table_row"], [93, 2, 1, "", "sort_table_by_column"], [93, 2, 1, "", "table_head"], [93, 2, 1, "", "table_tail"], [93, 2, 1, "", "trim_column_names"], [93, 2, 1, "", "trim_empty_rows"], [93, 2, 1, "", "write_table_to_csv"]], "RPA.Twitter": [[96, 0, 1, "", "Twitter"]], "RPA.Twitter.Twitter": [[96, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [96, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [96, 2, 1, "", "authorize"], [96, 2, 1, "", "follow"], [96, 2, 1, "", "get_me"], [96, 2, 1, "", "get_user_profile"], [96, 2, 1, "", "get_user_tweets"], [96, 2, 1, "", "like"], [96, 2, 1, "", "text_search_tweets"], [96, 2, 1, "", "tweet"], [96, 2, 1, "", "unfollow"], [96, 2, 1, "", "unlike"]], "RPA.Windows": [[98, 0, 1, "", "Windows"]], "RPA.Windows.Windows": [[98, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [98, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [98, 1, 1, "", "SIMULATE_MOVE"], [98, 2, 1, "", "add_library_components"], [98, 2, 1, "", "get_keyword_arguments"], [98, 2, 1, "", "get_keyword_documentation"], [98, 2, 1, "", "get_keyword_names"], [98, 2, 1, "", "get_keyword_source"], [98, 2, 1, "", "get_keyword_tags"], [98, 2, 1, "", "get_keyword_types"], [98, 2, 1, "", "run_keyword"]], "RPA.Word.Application": [[100, 0, 1, "", "Application"]], "RPA.Word.Application.Application": [[100, 1, 1, "", "APP_DISPATCH"], [100, 1, 1, "", "FILEFORMATS"], [100, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [100, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [100, 3, 1, "", "app"], [100, 2, 1, "", "close_document"], [100, 2, 1, "", "copy_selection_to_clipboard"], [100, 2, 1, "", "create_new_document"], [100, 2, 1, "", "export_to_pdf"], [100, 2, 1, "", "find_text"], [100, 2, 1, "", "get_all_texts"], [100, 2, 1, "", "get_current_line"], [100, 2, 1, "", "get_number_of_lines"], [100, 2, 1, "", "move_horizontally"], [100, 2, 1, "", "move_to_end"], [100, 2, 1, "", "move_to_line_end"], [100, 2, 1, "", "move_to_line_start"], [100, 2, 1, "", "move_to_top"], [100, 2, 1, "", "move_vertically"], [100, 2, 1, "", "open_application"], [100, 2, 1, "", "open_file"], [100, 2, 1, "", "paste_from_clipboard"], [100, 2, 1, "", "quit_application"], [100, 2, 1, "", "replace_text"], [100, 2, 1, "", "save_document"], [100, 2, 1, "", "save_document_as"], [100, 2, 1, "", "select_current_paragraph"], [100, 2, 1, "", "select_paragraph"], [100, 2, 1, "", "set_footer"], [100, 2, 1, "", "set_header"], [100, 2, 1, "", "set_object_property"], [100, 2, 1, "", "write_text"]]}, "objtypes": {"0": "py:class", "1": "py:attribute", "2": "py:method", "3": "py:property"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "attribute", "Python attribute"], "2": ["py", "method", "Python method"], "3": ["py", "property", "Python property"]}, "titleterms": {"project": [0, 3], "convent": 0, "name": 0, "version": [0, 102], "control": [0, 53], "avail": 0, "document": [0, 3], "code": 0, "format": 0, "test": 0, "continu": 0, "integr": 0, "chang": 0, "log": 0, "other": 0, "issu": 0, "type": [0, 53], "hint": 0, "contribut": [1, 3], "guid": 1, "report": 1, "bug": 1, "request": 1, "enhanc": 1, "submit": 1, "content": [1, 3], "todo": 2, "rpa": [2, 3, 101, 102], "databas": [2, 22, 23], "desktop": [2, 24, 25, 26, 28, 30], "window": [2, 30, 31, 97, 98], "keyword": [2, 4, 6, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 95, 97, 99], "applic": [2, 42, 43, 70, 71, 99, 100], "finder": 2, "mous": 2, "screen": 2, "email": [2, 38, 40], "exchang": [2, 38, 39], "imapsmtp": [2, 40, 41], "excel": [2, 42, 43, 44, 45, 100], "file": [2, 44, 45], "filesystem": [2, 46, 47], "json": [2, 58, 59], "javaaccessbridg": [2, 56, 57], "msgraph": [2, 62, 63], "robocorp": [2, 74, 76, 78, 80], "process": [2, 74, 75], "smartsheet": [2, 90, 91], "task": [2, 94], "framework": [3, 101, 102], "tabl": [3, 92, 93], "introduct": 3, "link": 3, "packag": [3, 102], "librari": 3, "instal": [3, 9], "browser": [3, 8, 9, 10, 11], "playwright": [3, 9], "exampl": [3, 59], "support": [3, 59], "contact": 3, "develop": 3, "licens": 3, "indic": 3, "archiv": [4, 5], "python": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100], "api": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100], "assist": [6, 7], "instruct": 9, "conda": 9, "yaml": 9, "pip": 9, "selenium": [10, 11], "calendar": [12, 13], "cloud": [14, 16, 18], "aw": [14, 15], "azur": [16, 17], "googl": [18, 19, 102], "crypto": [20, 21], "clipboard": [26, 27], "operatingsystem": [28, 29], "documentai": [32, 33, 34, 36], "base64ai": [34, 35], "nanonet": [36, 37], "ftp": [48, 49], "http": [50, 51], "hubspot": [52, 53], "us": 53, "date": 53, "time": 53, "when": 53, "search": 53, "batch": 53, "input": 53, "inform": [53, 59], "cach": 53, "custom": 53, "object": [53, 91], "refer": 53, "attribut": 53, "access": 53, "definit": 53, "simplepublicobject": 53, "simplepublicobjectwithassoci": 53, "associatedid": 53, "collectionresponseassociatedid": 53, "pipelin": 53, "pipelinestag": 53, "publicown": 53, "publicteam": 53, "return": 53, "properti": 53, "associ": 53, "text": 53, "base": 53, "queri": 53, "imag": [54, 55], "serial": 59, "about": 59, "jsonpath": 59, "syntax": 59, "express": 59, "function": 59, "addit": 59, "mfa": [60, 61], "netsuit": [64, 65], "notifi": [66, 67], "openai": [68, 69], "outlook": [70, 71], "pdf": [72, 73], "storag": 76, "secret": [77, 79], "vault": 78, "workitem": 80, "robotloglisten": [82, 83], "salesforc": [84, 85], "sap": [86, 87], "slack": [88, 89], "get": 91, "start": 91, "work": 91, "sheet": 91, "nativ": 91, "twitter": [95, 96], "word": 99, "robo": [101, 102], "releas": 102, "note": 102, "latest": 102, "upcom": 102, "28": 102, "6": 102, "4": 102, "04": 102, "dec": 102, "2024": 102, "3": 102, "17": 102, "sep": 102, "2": 102, "08": 102, "aug": 102, "1": 102, "jul": 102, "0": 102, "mai": 102, "5": 102, "05": 102, "apr": 102, "03": 102, "19": 102, "mar": 102, "14": 102, "22": 102, "feb": 102, "02": 102, "jan": 102, "12": 102, "18": 102, "2023": 102, "27": 102, "7": 102, "21": 102, "nov": 102, "15": 102, "10": 102, "06": 102, "01": 102, "24": 102, "oct": 102, "13": 102, "11": 102, "29": 102, "26": 102, "07": 102, "25": 102, "23": 102, "jun": 102, "09": 102, "20": 102, "2022": 102, "30": 102, "16": 102, "31": 102, "9": 102, "8": 102, "secur": 102, "all": 102, "2021": 102, "rpaframework": 102}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx": 57}, "alltitles": {"Project conventions": [[0, "project-conventions"]], "Naming": [[0, "naming"]], "Version Control": [[0, "version-control"]], "Availability": [[0, "availability"]], "Documentation": [[0, "documentation"], [3, "documentation"]], "Code Formatting": [[0, "code-formatting"]], "Testing": [[0, "testing"]], "Continuous Integration": [[0, "continuous-integration"]], "Change Log": [[0, "change-log"]], "Versioning": [[0, "versioning"]], "Other issues": [[0, "other-issues"]], "Type hinting": [[0, "type-hinting"]], "Contribution guide": [[1, "contribution-guide"]], "Reporting bugs": [[1, "reporting-bugs"]], "Requesting enhancements": [[1, "requesting-enhancements"]], "Submitting content": [[1, "submitting-content"]], "TODO": [[2, "todo"]], "RPA.Database:": [[2, "rpa-database"]], "RPA.Desktop.Windows:": [[2, "rpa-desktop-windows"]], "RPA.Desktop.keywords.application:": [[2, "rpa-desktop-keywords-application"]], "RPA.Desktop.keywords.finder:": [[2, "rpa-desktop-keywords-finder"]], "RPA.Desktop.keywords.mouse:": [[2, "rpa-desktop-keywords-mouse"]], "RPA.Desktop.keywords.screen:": [[2, "rpa-desktop-keywords-screen"]], "RPA.Email.Exchange:": [[2, "rpa-email-exchange"]], "RPA.Email.ImapSmtp:": [[2, "rpa-email-imapsmtp"]], "RPA.Excel.Files:": [[2, "rpa-excel-files"]], "RPA.FileSystem:": [[2, "rpa-filesystem"]], "RPA.JSON:": [[2, "rpa-json"]], "RPA.JavaAccessBridge:": [[2, "rpa-javaaccessbridge"]], "RPA.MSGraph:": [[2, "rpa-msgraph"]], "RPA.Robocorp.Process:": [[2, "rpa-robocorp-process"]], "RPA.Smartsheet:": [[2, "rpa-smartsheet"]], "RPA.Tasks:": [[2, "rpa-tasks"]], "RPA.application:": [[2, "rpa-application"]], "RPA Framework": [[3, "rpa-framework"], [101, "id2"], [102, "id2"]], "Table of Contents": [[3, "table-of-contents"]], "Introduction": [[3, "introduction"]], "Links": [[3, "links"]], "Packages": [[3, "packages"]], "Libraries": [[3, "libraries"], [3, null]], "Installation of RPA.Browser.Playwright": [[3, "installation-of-rpa-browser-playwright"]], "Installation": [[3, "installation"]], "Example": [[3, "example"]], "Support and contact": [[3, "support-and-contact"]], "Contributing": [[3, "contributing"]], "Development": [[3, "development"]], "License": [[3, "license"]], "Project": [[3, null]], "Indices and tables": [[3, "indices-and-tables"]], "Archive": [[4, "archive"], [5, "archive"]], "Keywords": [[4, "keywords"], [6, "keywords"], [9, "keywords"], [10, "keywords"], [12, "keywords"], [14, "keywords"], [16, "keywords"], [18, "keywords"], [20, "keywords"], [22, "keywords"], [24, "keywords"], [26, "keywords"], [28, "keywords"], [30, "keywords"], [32, "keywords"], [34, "keywords"], [36, "keywords"], [38, "keywords"], [40, "keywords"], [42, "keywords"], [44, "keywords"], [46, "keywords"], [48, "keywords"], [50, "keywords"], [52, "keywords"], [54, "keywords"], [56, "keywords"], [58, "keywords"], [60, "keywords"], [62, "keywords"], [64, "keywords"], [66, "keywords"], [68, "keywords"], [70, "keywords"], [72, "keywords"], [74, "keywords"], [76, "keywords"], [78, "keywords"], [80, "keywords"], [82, "keywords"], [84, "keywords"], [86, "keywords"], [88, "keywords"], [90, "keywords"], [92, "keywords"], [94, "keywords"], [95, "keywords"], [97, "keywords"], [99, "keywords"]], "Python API": [[5, "python-api"], [7, "python-api"], [11, "python-api"], [13, "python-api"], [15, "python-api"], [17, "python-api"], [19, "python-api"], [21, "python-api"], [23, "python-api"], [25, "python-api"], [27, "python-api"], [29, "python-api"], [31, "python-api"], [33, "python-api"], [35, "python-api"], [37, "python-api"], [39, "python-api"], [41, "python-api"], [43, "python-api"], [45, "python-api"], [47, "python-api"], [49, "python-api"], [51, "python-api"], [53, "python-api"], [55, "python-api"], [57, "python-api"], [59, "python-api"], [61, "python-api"], [63, "python-api"], [65, "python-api"], [67, "python-api"], [69, "python-api"], [71, "python-api"], [73, "python-api"], [75, "python-api"], [77, "python-api"], [79, "python-api"], [81, "python-api"], [83, "python-api"], [85, "python-api"], [87, "python-api"], [89, "python-api"], [91, "python-api"], [93, "python-api"], [96, "python-api"], [98, "python-api"], [100, "python-api"]], "Assistant": [[6, "assistant"], [7, "assistant"]], "Browser": [[8, "browser"]], "Browser.Playwright": [[9, "browser-playwright"]], "Install instructions": [[9, "install-instructions"]], "conda.yaml": [[9, "conda-yaml"]], "pip": [[9, "pip"]], "Browser.Selenium": [[10, "browser-selenium"], [11, "browser-selenium"]], "}": [[11, "id11"]], "Calendar": [[12, "calendar"], [13, "calendar"]], "Cloud.AWS": [[14, "cloud-aws"]], "AWS": [[15, "aws"]], "Cloud.Azure": [[16, "cloud-azure"]], "Azure": [[17, "azure"]], "Cloud.Google": [[18, "cloud-google"]], "Google": [[19, "google"]], "Crypto": [[20, "crypto"], [21, "crypto"]], "Database": [[22, "database"], [23, "database"]], "Desktop": [[24, "desktop"], [25, "desktop"]], "Desktop.Clipboard": [[26, "desktop-clipboard"]], "Clipboard": [[27, "clipboard"]], "Desktop.OperatingSystem": [[28, "desktop-operatingsystem"]], "OperatingSystem": [[29, "operatingsystem"]], "Desktop.Windows": [[30, "desktop-windows"]], "Windows": [[31, "windows"], [97, "windows"], [98, "windows"]], "DocumentAI": [[32, "documentai"], [33, "documentai"]], "DocumentAI.Base64AI": [[34, "documentai-base64ai"]], "Base64AI": [[35, "base64ai"]], "DocumentAI.Nanonets": [[36, "documentai-nanonets"]], "Nanonets": [[37, "nanonets"]], "Email.Exchange": [[38, "email-exchange"]], "Exchange": [[39, "exchange"]], "Email.ImapSmtp": [[40, "email-imapsmtp"]], "ImapSmtp": [[41, "imapsmtp"]], "Excel.Application": [[42, "excel-application"], [43, "excel-application"], [100, "excel-application"]], "Excel.Files": [[44, "excel-files"], [45, "excel-files"]], "FileSystem": [[46, "filesystem"], [47, "filesystem"]], "FTP": [[48, "ftp"], [49, "ftp"]], "HTTP": [[50, "http"], [51, "http"]], "HubSpot": [[52, "hubspot"]], "Hubspot": [[53, "hubspot"]], "Using Date Times When Searching": [[53, "using-date-times-when-searching"]], "Batch Inputs": [[53, "batch-inputs"]], "Information Caching": [[53, "information-caching"]], "Custom Object Types": [[53, "custom-object-types"]], "HubSpot Object Reference": [[53, "hubspot-object-reference"]], "Attribute Access": [[53, "attribute-access"]], "Attribute Definitions": [[53, "attribute-definitions"]], "SimplePublicObject": [[53, "simplepublicobject"]], "SimplePublicObjectWithAssociations": [[53, "simplepublicobjectwithassociations"]], "AssociatedId": [[53, "associatedid"]], "CollectionResponseAssociatedId": [[53, "collectionresponseassociatedid"]], "Pipeline": [[53, "pipeline"]], "PipelineStage": [[53, "pipelinestage"]], "PublicOwner": [[53, "publicowner"]], "PublicTeam": [[53, "publicteam"]], "Object Searching": [[53, "object-searching"]], "Controlling Returned Properties": [[53, "controlling-returned-properties"]], "Using Associations": [[53, "using-associations"]], "Text-based Search Query": [[53, "text-based-search-query"]], "Images": [[54, "images"], [55, "images"]], "JavaAccessBridge": [[56, "javaaccessbridge"], [57, "javaaccessbridge"]], "JSON": [[58, "json"], [59, "json"]], "Serialization": [[59, "serialization"]], "About JSONPath": [[59, "about-jsonpath"]], "Syntax example": [[59, "syntax-example"]], "Supported Expressions": [[59, "supported-expressions"]], "Functions": [[59, "functions"]], "Additional Information": [[59, "additional-information"]], "MFA": [[60, "mfa"], [61, "mfa"]], "MSGraph": [[62, "msgraph"], [63, "msgraph"]], "Netsuite": [[64, "netsuite"], [65, "netsuite"]], "Notifier": [[66, "notifier"], [67, "notifier"]], "OpenAI": [[68, "openai"], [69, "openai"]], "Outlook.Application": [[70, "outlook-application"], [71, "outlook-application"]], "PDF": [[72, "pdf"], [73, "pdf"]], "Robocorp.Process": [[74, "robocorp-process"]], "Process": [[75, "process"]], "Robocorp.Storage": [[76, "robocorp-storage"]], "Secrets": [[77, "secrets"], [79, "secrets"]], "Robocorp.Vault": [[78, "robocorp-vault"]], "Robocorp.WorkItems": [[80, "robocorp-workitems"]], "RobotLogListener": [[82, "robotloglistener"], [83, "robotloglistener"]], "Salesforce": [[84, "salesforce"], [85, "salesforce"]], "SAP": [[86, "sap"], [87, "sap"]], "Slack": [[88, "slack"], [89, "slack"]], "Smartsheet": [[90, "smartsheet"], [91, "smartsheet"]], "Getting started": [[91, "getting-started"]], "Working on a sheet": [[91, "working-on-a-sheet"]], "Native Smartsheet objects": [[91, "native-smartsheet-objects"]], "Tables": [[92, "tables"], [93, "tables"]], "Tasks": [[94, "tasks"]], "Twitter": [[95, "twitter"], [96, "twitter"]], "Word.Application": [[99, "word-application"]], "Robo": [[101, "id1"], [102, "id1"]], "Release notes": [[102, "release-notes"]], "Latest versions": [[102, "latest-versions"]], "Upcoming release": [[102, "id3"]], "28.6.4 - 04 Dec 2024": [[102, "dec-2024"]], "Released": [[102, "id4"]], "28.6.3 - 17 Sep 2024": [[102, "sep-2024"]], "28.6.2 - 08 Aug 2024": [[102, "aug-2024"]], "28.6.1 - 04 Jul 2024": [[102, "jul-2024"]], "28.6.0 - 17 May 2024": [[102, "may-2024"]], "28.5.1 - 05 Apr 2024": [[102, "apr-2024"]], "28.5.0 - 05 Apr 2024": [[102, "id5"]], "04 Apr 2024": [[102, "id6"]], "03 Apr 2024": [[102, "id7"]], "28.4.1 - 19 Mar 2024": [[102, "mar-2024"]], "28.4.0 - 14 Mar 2024": [[102, "id8"]], "28.3.0 - 22 Feb 2024": [[102, "feb-2024"]], "28.2.0 - 02 Feb 2024": [[102, "id9"]], "17 Jan 2024": [[102, "jan-2024"]], "28.1.0 - 12 Jan 2024": [[102, "id10"]], "28.0.0 - 18 Dec 2023": [[102, "dec-2023"]], "27.7.0 - 21 Nov 2023": [[102, "nov-2023"]], "27.6.0 - 15 Nov 2023": [[102, "id11"]], "27.5.3 - 10 Nov 2023": [[102, "id12"]], "27.5.2 - 06 Nov 2023": [[102, "id13"]], "27.5.1 - 01 Nov 2023": [[102, "id14"]], "27.5.0 - 24 Oct 2023": [[102, "oct-2023"]], "27.4.2 - 13 Oct 2023": [[102, "id15"]], "27.4.1 - 11 Oct 2023": [[102, "id16"]], "27.4.0 - 11 Oct 2023": [[102, "id17"]], "27.3.1 - 10 Oct 2023": [[102, "id18"]], "06 Oct 2023": [[102, "id19"]], "27.3.0 - 29 Sep 2023": [[102, "sep-2023"]], "27 Sep 2023": [[102, "id20"]], "27.2.0 - 26 Sep 2023": [[102, "id21"]], "27.1.0 - 15 Sep 2023": [[102, "id22"]], "14 Sep 2023": [[102, "id23"]], "27.0.1 - 11 Sep 2023": [[102, "id24"]], "27.0.0 - 07 Sep 2023": [[102, "id25"]], "26.1.1 - 07 Sep 2023": [[102, "id26"]], "04 Sep 2023": [[102, "id27"]], "24 Aug 2023": [[102, "aug-2023"]], "26.1.0 - 24 Aug 2023": [[102, "id28"]], "26.0.3 - 24 Aug 2023": [[102, "id29"]], "26.0.2 - 24 Aug 2023": [[102, "id30"]], "26.0.1 - 22 Aug 2023": [[102, "id31"]], "26.0.0 - 18 Aug 2023": [[102, "id32"]], "25.0.1 - 11 Aug 2023": [[102, "id33"]], "25.0.0 - 10 Aug 2023": [[102, "id34"]], "24.1.2 - 27 Jul 2023": [[102, "jul-2023"]], "24.1.1 - 26 Jul 2023": [[102, "id35"]], "24.1.0 - 25 Jul 2023": [[102, "id36"]], "24.0.0 - 18 Jul 2023": [[102, "id37"]], "23.5.2 - 29 Jun 2023": [[102, "jun-2023"]], "23.5.1 - 28 Jun 2023": [[102, "id38"]], "23.5.0 - 27 Jun 2023": [[102, "id39"]], "23.4.0 - 22 Jun 2023": [[102, "id40"]], "09 Jun 2023": [[102, "id41"]], "23.3.0 - 09 Jun 2023": [[102, "id42"]], "23.2.1 - 02 Jun 2023": [[102, "id43"]], "23.2.0 - 02 Jun 2023": [[102, "id44"]], "01 Jun 2023": [[102, "id45"]], "23.1.0 - 19 May 2023": [[102, "may-2023"]], "12 May 2023": [[102, "id46"]], "23.0.0 - 05 May 2023": [[102, "id47"]], "04 May 2023": [[102, "id48"]], "22.5.3 - 02 May 2023": [[102, "id49"]], "22.5.2 - 13 Apr 2023": [[102, "apr-2023"]], "22.5.1 - 07 Apr 2023": [[102, "id50"]], "22.5.0 - 05 Apr 2023": [[102, "id51"]], "04 Apr 2023": [[102, "id52"]], "22.4.0 - 29 Mar 2023": [[102, "mar-2023"]], "22.3.0 - 22 Mar 2023": [[102, "id53"]], "22.2.3 - 15 Mar 2023": [[102, "id54"]], "14 Mar 2023": [[102, "id55"]], "22.2.2 - 13 Mar 2023": [[102, "id56"]], "22.2.1 - 09 Mar 2023": [[102, "id57"]], "22.2.0 - 09 Mar 2023": [[102, "id58"]], "08 Mar 2023": [[102, "id59"]], "22.1.1 - 06 Mar 2023": [[102, "id60"]], "22.1.0 - 06 Mar 2023": [[102, "id61"]], "22.0.1 - 03 Mar 2023": [[102, "id62"]], "02 Mar 2023": [[102, "id63"]], "28 Feb 2023": [[102, "feb-2023"]], "22 Feb 2023": [[102, "id64"]], "21 Feb 2023": [[102, "id65"]], "22.0.0 - 20 Feb 2023": [[102, "id66"]], "20 Feb 2023": [[102, "id67"]], "17 Feb 2023": [[102, "id68"]], "21.1.1 - 15 Feb 2023": [[102, "id69"]], "21.1.0 - 09 Feb 2023": [[102, "id70"]], "08 Feb 2023": [[102, "id71"]], "21.0.1 - 03 Feb 2023": [[102, "id72"]], "21.0.0 - 01 Feb 2023": [[102, "id73"]], "20.1.2 - 26 Jan 2023": [[102, "jan-2023"]], "20.1.1 - 26 Jan 2023": [[102, "id74"]], "20.1.0 - 19 Jan 2023": [[102, "id75"]], "20.0.2 - 10 Jan 2023": [[102, "id76"]], "20.0.1 - 10 Jan 2023": [[102, "id77"]], "20.0.0 - 09 Jan 2023": [[102, "id78"]], "19.4.2 - 21 Dec 2022": [[102, "dec-2022"]], "19.4.1 - 09 Dec 2022": [[102, "id79"]], "19.4.0 - 08 Dec 2022": [[102, "id80"]], "19.3.1 - 29 Nov 2022": [[102, "nov-2022"]], "19.3.0 - 28 Nov 2022": [[102, "id81"]], "19.2.0 - 17 Nov 2022": [[102, "id82"]], "19.1.2 - 17 Nov 2022": [[102, "id83"]], "19.1.1 - 04 Nov 2022": [[102, "id84"]], "19.1.0 - 03 Nov 2022": [[102, "id85"]], "19.0.0 - 27 Oct 2022": [[102, "oct-2022"]], "18.0.0 - 17 Oct 2022": [[102, "id86"]], "17.7.0 - 14 Oct 2022": [[102, "id87"]], "17.6.0 - 12 Oct 2022": [[102, "id88"]], "17.5.1 - 11 Oct 2022": [[102, "id89"]], "17.5.0 - 07 Oct 2022": [[102, "id90"]], "17.4.0 - 06 Oct 2022": [[102, "id91"]], "17.3.0 - 03 Oct 2022": [[102, "id92"]], "17.2.0 - 30 Sep 2022": [[102, "sep-2022"]], "17.1.1 - 29 Sep 2022": [[102, "id93"]], "17.1.0 - 28 Sep 2022": [[102, "id94"]], "17.0.1 - 21 Sep 2022": [[102, "id95"]], "16.3.0 - 07 Sep 2022": [[102, "id96"]], "16.2.0 - 07 Sep 2022": [[102, "id97"]], "16.1.0 - 01 Sep 2022": [[102, "id98"]], "16.0.0 - 31 Aug 2022": [[102, "aug-2022"]], "15.9.0 - 22 Aug 2022": [[102, "id99"]], "15.8.1 - 19 Aug 2022": [[102, "id100"]], "15.8.0 - 12 Aug 2022": [[102, "id101"]], "15.7.0 - 10 Aug 2022": [[102, "id102"]], "15.6.1 - 09 Aug 2022": [[102, "id103"]], "15.6.0 - 02 Aug 2022": [[102, "id104"]], "15.5.0 - 22 Jul 2022": [[102, "jul-2022"]], "15.4.0 - 13 Jul 2022": [[102, "id105"]], "15.3.0 - 08 Jul 2022": [[102, "id106"]], "15.2.0 - 05 Jul 2022": [[102, "id107"]], "15.1.4 - 23 Jun 2022": [[102, "jun-2022"]], "15.1.3 - 22 Jun 2022": [[102, "id108"]], "15.1.2 - 21 Jun 2022": [[102, "id109"]], "15.1.1 - 17 Jun 2022": [[102, "id110"]], "15.1.0 - 15 Jun 2022": [[102, "id111"]], "security release (all packages) - 27 May 2022": [[102, "security-release-all-packages-27-may-2022"]], "14.2.0 - 25 May 2022": [[102, "may-2022"]], "14.1.1 - 12 May 2022": [[102, "id112"]], "14.1.0 - 05 May 2022": [[102, "id113"]], "14.0.0 - 02 May 2022": [[102, "id114"]], "13.3.1 - 15 Apr 2022": [[102, "apr-2022"]], "13.3.0 - 14 Apr 2022": [[102, "id115"]], "13.2.0 - 08 Apr 2022": [[102, "id116"]], "13.1.0 - 07 Apr 2022": [[102, "id117"]], "13.0.3 - 05 Apr 2022": [[102, "id118"]], "13.0.2 - 04 Apr 2022": [[102, "id119"]], "13.0.1 - 01 Apr 2022": [[102, "id120"]], "13.0.0 - 28 Mar 2022": [[102, "mar-2022"]], "12.10.1 - 25 Mar 2022": [[102, "id121"]], "12.10.0 - 23 Mar 2022": [[102, "id122"]], "12.9.0 - 11 Mar 2022": [[102, "id123"]], "12.8.2 - 25 Feb 2022": [[102, "feb-2022"]], "12.8.1 - 18 Feb 2022": [[102, "id124"]], "12.8.0 - 10 Feb 2022": [[102, "id125"]], "12.7.0 - 10 Feb 2022": [[102, "id126"]], "12.6.1 - 08 Feb 2022": [[102, "id127"]], "12.6.0 - 27 Jan 2022": [[102, "jan-2022"]], "12.5.1 - 18 Jan 2022": [[102, "id128"]], "12.5.0 - 17 Jan 2022": [[102, "id129"]], "12.4.1 - 12 Jan 2022": [[102, "id130"]], "12.3.0 - 10 Jan 2022": [[102, "id135"]], "12.2.0 - 17 Dec 2021": [[102, "dec-2021"]], "12.1.2 - 14 Dec 2021": [[102, "id138"]], "12.1.1 - 7 Dec 2021": [[102, "id139"]], "12.1.0 - 7 Dec 2021": [[102, "id140"]], "Releases on 01 Dec 2021": [[102, "releases-on-01-dec-2021"]], "12.0.0 - 29 Nov 2021": [[102, "nov-2021"]], "11.6.4 - 24 Nov 2021": [[102, "id141"]], "11.6.3 - 15 Nov 2021": [[102, "id142"]], "11.6.2 - 13 Nov 2021": [[102, "id143"]], "11.6.1 - 12 Nov 2021": [[102, "id144"]], "11.6.0 - 4 Nov 2021": [[102, "id145"]], "11.5.2": [[102, "id146"]], "11.5.1": [[102, "id147"]], "11.5.0": [[102, "id148"]], "11.4.0": [[102, "id149"]], "11.3.0": [[102, "id150"]], "11.2.1": [[102, "id151"]], "11.2.0": [[102, "id152"]], "11.1.3": [[102, "id153"]], "11.1.2": [[102, "id154"]], "11.1.1": [[102, "id155"]], "11.1.0": [[102, "id156"]], "11.0.0": [[102, "id157"]], "10.9.3": [[102, "id158"]], "10.9.2": [[102, "id159"]], "10.9.0": [[102, "id160"]], "10.8.0": [[102, "id161"]], "10.7.1": [[102, "id162"]], "10.6.0": [[102, "id163"]], "10.5.0": [[102, "id164"]], "10.4.0": [[102, "id165"]], "10.3.0": [[102, "id166"]], "10.2.0": [[102, "id167"]], "rpaframework-google: 0.2.3": [[102, "rpaframework-google-0-2-3"]], "10.1.0": [[102, "id168"]], "10.0.7": [[102, "id169"]], "10.0.6": [[102, "id170"]], "10.0.5": [[102, "id171"]], "10.0.4": [[102, "id172"]], "10.0.3": [[102, "id173"]], "10.0.2": [[102, "id174"]], "10.0.1": [[102, "id175"]], "10.0.0": [[102, "id176"]], "9.6.0": [[102, "id177"]], "9.5.0": [[102, "id178"]], "9.4.0": [[102, "id179"]], "9.3.4": [[102, "id180"]], "9.3.3": [[102, "id181"]], "9.3.2": [[102, "id182"]], "9.3.1": [[102, "id183"]], "9.3.0": [[102, "id184"]], "9.2.1": [[102, "id185"]], "9.2.0": [[102, "id186"]], "9.1.0": [[102, "id187"]], "9.0.0": [[102, "id188"]], "8.2.0": [[102, "id189"]], "8.1.0": [[102, "id190"]], "8.0.1": [[102, "id191"]], "8.0.0": [[102, "id192"]], "7.6.0": [[102, "id193"]], "7.5.0": [[102, "id194"]], "7.4.2": [[102, "id195"]], "7.4.1": [[102, "id196"]], "7.4.0": [[102, "id197"]], "7.3.0": [[102, "id198"]], "7.2.0": [[102, "id199"]], "7.1.1": [[102, "id200"]], "7.1.0": [[102, "id201"]], "7.0.5": [[102, "id202"]], "7.0.4": [[102, "id203"]], "7.0.3": [[102, "id204"]], "7.0.2": [[102, "id205"]], "7.0.1": [[102, "id206"]], "7.0.0": [[102, "id207"]], "6.7.3": [[102, "id208"]], "6.7.2": [[102, "id209"]], "6.7.1": [[102, "id210"]], "6.7.0": [[102, "id211"]], "6.6.0": [[102, "id212"]], "6.5.0": [[102, "id213"]], "6.4.0": [[102, "id214"]], "6.3.1": [[102, "id215"]], "6.3.0": [[102, "id216"]], "6.2.0": [[102, "id217"]], "6.1.0": [[102, "id218"]], "6.0.2": [[102, "id219"]], "6.0.1": [[102, "id220"]], "6.0.0": [[102, "id221"]], "5.3.3": [[102, "id222"]], "5.3.2": [[102, "id223"]], "5.3.1": [[102, "id224"]], "5.3.0": [[102, "id225"]], "5.2.0": [[102, "id226"]], "5.1.0": [[102, "id227"]], "5.0.0": [[102, "id228"]], "4.2.0": [[102, "id229"]], "4.1.0": [[102, "id230"]], "4.0.0": [[102, "id231"]], "3.0.0": [[102, "id232"]], "2.7.0": [[102, "id233"]], "2.6.0": [[102, "id234"]], "2.5.1": [[102, "id235"]], "2.5.0": [[102, "id236"]], "2.4.0": [[102, "id237"]], "2.3.0": [[102, "id238"]], "2.2.0": [[102, "id239"]], "2.1.0": [[102, "id240"]], "2.0.1": [[102, "id241"]], "2.0.0": [[102, "id242"]], "1.4.0": [[102, "id243"]], "1.3.0": [[102, "id244"]], "1.2.1": [[102, "id245"]], "1.2.0": [[102, "id246"]], "1.1.0": [[102, "id247"]], "1.0.4": [[102, "id248"]], "1.0.3": [[102, "id249"]], "1.0.2": [[102, "id250"]], "1.0.1": [[102, "id251"]], "1.0.0": [[102, "id252"]], "0.11.0": [[102, "id253"]], "0.10.1": [[102, "id254"]], "0.10.0": [[102, "id255"]], "0.9.3": [[102, "id256"]], "0.9.2": [[102, "id257"]], "0.9.1": [[102, "id258"]], "0.9.0": [[102, "id259"]], "0.8.7": [[102, "id260"]], "0.8.6": [[102, "id261"]], "0.8.5": [[102, "id262"]], "0.8.4": [[102, "id263"]], "0.8.3": [[102, "id264"]], "0.8.2": [[102, "id265"]], "0.8.1": [[102, "id266"]], "0.8.0": [[102, "id267"]], "0.7.5": [[102, "id268"]], "0.7.4": [[102, "id269"]], "0.7.3": [[102, "id270"]], "0.7.2": [[102, "id271"]], "0.7.1": [[102, "id272"]]}, "indexentries": {"archive (class in rpa.archive)": [[5, "RPA.Archive.Archive"]], "robot_library_doc_format (rpa.archive.archive attribute)": [[5, "RPA.Archive.Archive.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.archive.archive attribute)": [[5, "RPA.Archive.Archive.ROBOT_LIBRARY_SCOPE"]], "add_to_archive() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.add_to_archive"]], "archive_folder_with_tar() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.archive_folder_with_tar"]], "archive_folder_with_zip() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.archive_folder_with_zip"]], "extract_archive() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.extract_archive"]], "extract_file_from_archive() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.extract_file_from_archive"]], "get_archive_info() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.get_archive_info"]], "list_archive() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.list_archive"]], "assistant (class in rpa.assistant)": [[7, "RPA.Assistant.Assistant"]], "robot_auto_keywords (rpa.assistant.assistant attribute)": [[7, "RPA.Assistant.Assistant.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.assistant.assistant attribute)": [[7, "RPA.Assistant.Assistant.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.assistant.assistant attribute)": [[7, "RPA.Assistant.Assistant.ROBOT_LIBRARY_SCOPE"]], "add_button() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_button"]], "add_checkbox() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_checkbox"]], "add_date_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_date_input"]], "add_drop_down() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_drop_down"]], "add_file() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_file"]], "add_file_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_file_input"]], "add_files() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_files"]], "add_flet_icon() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_flet_icon"]], "add_heading() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_heading"]], "add_hidden_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_hidden_input"]], "add_icon() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_icon"]], "add_image() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_image"]], "add_link() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_link"]], "add_loading_bar() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_loading_bar"]], "add_loading_spinner() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_loading_spinner"]], "add_next_ui_button() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_next_ui_button"]], "add_password_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_password_input"]], "add_radio_buttons() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_radio_buttons"]], "add_slider() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_slider"]], "add_submit_buttons() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_submit_buttons"]], "add_text() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_text"]], "add_text_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_text_input"]], "ask_user() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.ask_user"]], "clear_dialog() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.clear_dialog"]], "close_column() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_column"]], "close_container() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_container"]], "close_navbar() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_navbar"]], "close_row() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_row"]], "close_stack() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_stack"]], "open_column() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_column"]], "open_container() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_container"]], "open_navbar() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_navbar"]], "open_row() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_row"]], "open_stack() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_stack"]], "refresh_dialog() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.refresh_dialog"]], "run_dialog() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.run_dialog"]], "set_title() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.set_title"]], "available_options (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.AVAILABLE_OPTIONS"]], "available_services (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.AVAILABLE_SERVICES"]], "browser_names (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.BROWSER_NAMES"]], "chromium_browsers (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.CHROMIUM_BROWSERS"]], "robot_library_doc_format (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.ROBOT_LIBRARY_SCOPE"]], "robot_library_version (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.ROBOT_LIBRARY_VERSION"]], "supported_browsers (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.SUPPORTED_BROWSERS"]], "selenium (class in rpa.browser.selenium)": [[11, "RPA.Browser.Selenium.Selenium"]], "add_library_components() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.add_library_components"]], "attach_chrome_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.attach_chrome_browser"]], "clear_all_highlights() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.clear_all_highlights"]], "click_button_when_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.click_button_when_visible"]], "click_element_if_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.click_element_if_visible"]], "click_element_when_clickable() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.click_element_when_clickable"]], "click_element_when_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.click_element_when_visible"]], "does_alert_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_alert_contain"]], "does_alert_not_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_alert_not_contain"]], "does_element_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_element_contain"]], "does_frame_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_frame_contain"]], "does_location_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_location_contain"]], "does_page_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain"]], "does_page_contain_button() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_button"]], "does_page_contain_checkbox() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_checkbox"]], "does_page_contain_element() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_element"]], "does_page_contain_image() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_image"]], "does_page_contain_link() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_link"]], "does_page_contain_list() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_list"]], "does_page_contain_radio_button() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_radio_button"]], "does_page_contain_textfield() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_textfield"]], "does_table_cell_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_cell_contain"]], "does_table_column_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_column_contain"]], "does_table_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_contain"]], "does_table_footer_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_footer_contain"]], "does_table_header_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_header_contain"]], "does_table_row_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_row_contain"]], "does_textarea_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_textarea_contain"]], "does_textfield_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_textfield_contain"]], "driver (rpa.browser.selenium.selenium property)": [[11, "RPA.Browser.Selenium.Selenium.driver"]], "execute_cdp() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.execute_cdp"]], "failure_occurred() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.failure_occurred"]], "find_element() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.find_element"]], "find_elements() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.find_elements"]], "get_browser_capabilities() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_browser_capabilities"]], "get_element_status() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_element_status"]], "get_keyword_arguments() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_arguments"]], "get_keyword_documentation() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_documentation"]], "get_keyword_names() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_names"]], "get_keyword_source() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_source"]], "get_keyword_tags() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_tags"]], "get_keyword_types() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_types"]], "get_testability_status() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_testability_status"]], "get_webelement() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_webelement"]], "highlight_elements() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.highlight_elements"]], "input_text_when_element_is_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.input_text_when_element_is_visible"]], "is_alert_present() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_alert_present"]], "is_checkbox_selected() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_checkbox_selected"]], "is_chromium (rpa.browser.selenium.selenium property)": [[11, "RPA.Browser.Selenium.Selenium.is_chromium"]], "is_element_attribute_equal_to() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_attribute_equal_to"]], "is_element_disabled() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_disabled"]], "is_element_enabled() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_enabled"]], "is_element_focused() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_focused"]], "is_element_text() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_text"]], "is_element_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_visible"]], "is_list_selected() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_list_selected"]], "is_list_selection() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_list_selection"]], "is_location() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_location"]], "is_radio_button_selected() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_radio_button_selected"]], "is_radio_button_set_to() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_radio_button_set_to"]], "is_textarea_value() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_textarea_value"]], "is_textfield_value() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_textfield_value"]], "is_title() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_title"]], "location (rpa.browser.selenium.selenium property)": [[11, "RPA.Browser.Selenium.Selenium.location"]], "normalize_options() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.normalize_options"]], "open_available_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.open_available_browser"]], "open_chrome_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.open_chrome_browser"]], "open_headless_chrome_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.open_headless_chrome_browser"]], "open_user_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.open_user_browser"]], "print_to_pdf() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.print_to_pdf"]], "register_driver() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.register_driver"]], "run_keyword() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.run_keyword"]], "screenshot() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.screenshot"]], "set_download_directory() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.set_download_directory"]], "set_element_attribute() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.set_element_attribute"]], "wait_and_click_button() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.wait_and_click_button"]], "calendar (class in rpa.calendar)": [[13, "RPA.Calendar.Calendar"]], "robot_auto_keywords (rpa.calendar.calendar attribute)": [[13, "RPA.Calendar.Calendar.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.calendar.calendar attribute)": [[13, "RPA.Calendar.Calendar.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.calendar.calendar attribute)": [[13, "RPA.Calendar.Calendar.ROBOT_LIBRARY_SCOPE"]], "add_custom_holidays() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.add_custom_holidays"]], "compare_times() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.compare_times"]], "create_time() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.create_time"]], "first_business_day_of_the_month() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.first_business_day_of_the_month"]], "get_iso_calendar() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.get_iso_calendar"]], "is_the_date_business_day() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.is_the_date_business_day"]], "is_the_date_holiday() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.is_the_date_holiday"]], "last_business_day_of_the_month() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.last_business_day_of_the_month"]], "reset_custom_holidays() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.reset_custom_holidays"]], "return_holidays() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.return_holidays"]], "return_next_business_day() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.return_next_business_day"]], "return_previous_business_day() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.return_previous_business_day"]], "set_business_days() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.set_business_days"]], "set_locale() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.set_locale"]], "sort_list_of_dates() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.sort_list_of_dates"]], "time_difference() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference"]], "time_difference_between_timezones() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_between_timezones"]], "time_difference_in_days() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_in_days"]], "time_difference_in_hours() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_in_hours"]], "time_difference_in_minutes() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_in_minutes"]], "time_difference_in_months() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_in_months"]], "time_now() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_now"]], "aws (class in rpa.cloud.aws)": [[15, "RPA.Cloud.AWS.AWS"]], "robot_library_doc_format (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.ROBOT_LIBRARY_SCOPE"]], "analyze_document() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.analyze_document"]], "assume_role() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.assume_role"]], "clients (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.clients"]], "convert_textract_response_to_model() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.convert_textract_response_to_model"]], "create_bucket() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.create_bucket"]], "create_queue() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.create_queue"]], "create_redshift_statement_parameters() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.create_redshift_statement_parameters"]], "delete_bucket() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.delete_bucket"]], "delete_files() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.delete_files"]], "delete_message() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.delete_message"]], "delete_queue() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.delete_queue"]], "describe_redshift_table() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.describe_redshift_table"]], "detect_document_text() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.detect_document_text"]], "detect_entities() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.detect_entities"]], "detect_sentiment() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.detect_sentiment"]], "download_files() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.download_files"]], "execute_redshift_statement() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.execute_redshift_statement"]], "execute_redshift_statement_asyncronously() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.execute_redshift_statement_asyncronously"]], "generate_presigned_url() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.generate_presigned_url"]], "get_cells() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_cells"]], "get_document_analysis() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_document_analysis"]], "get_document_text_detection() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_document_text_detection"]], "get_pages_and_text() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_pages_and_text"]], "get_redshift_statement_results() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_redshift_statement_results"]], "get_tables() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_tables"]], "get_words() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_words"]], "init_comprehend_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_comprehend_client"]], "init_redshift_data_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_redshift_data_client"]], "init_s3_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_s3_client"]], "init_sqs_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_sqs_client"]], "init_sts_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_sts_client"]], "init_textract_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_textract_client"]], "list_buckets() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_buckets"]], "list_files() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_files"]], "list_redshift_databases() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_redshift_databases"]], "list_redshift_schemas() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_redshift_schemas"]], "list_redshift_tables() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_redshift_tables"]], "logger (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.logger"]], "receive_message() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.receive_message"]], "region (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.region"]], "robocorp_vault_name (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.robocorp_vault_name"]], "send_message() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.send_message"]], "services (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.services"]], "set_robocorp_vault() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.set_robocorp_vault"]], "start_document_analysis() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.start_document_analysis"]], "start_document_text_detection() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.start_document_text_detection"]], "upload_file() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.upload_file"]], "upload_files() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.upload_files"]], "azure (class in rpa.cloud.azure)": [[17, "RPA.Cloud.Azure.Azure"]], "robot_library_doc_format (rpa.cloud.azure.azure attribute)": [[17, "RPA.Cloud.Azure.Azure.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.cloud.azure.azure attribute)": [[17, "RPA.Cloud.Azure.Azure.ROBOT_LIBRARY_SCOPE"]], "google (class in rpa.cloud.google)": [[19, "RPA.Cloud.Google.Google"]], "robot_library_doc_format (rpa.cloud.google.google attribute)": [[19, "RPA.Cloud.Google.Google.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.cloud.google.google attribute)": [[19, "RPA.Cloud.Google.Google.ROBOT_LIBRARY_SCOPE"]], "add_attachment_to_message() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.add_attachment_to_message"]], "add_drive_share() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.add_drive_share"]], "analyze_sentiment() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.analyze_sentiment"]], "annotate_image() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.annotate_image"]], "annotate_video() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.annotate_video"]], "classify_text() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.classify_text"]], "clear_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.clear_sheet_values"]], "copy_sheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.copy_sheet"]], "copy_spreadsheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.copy_spreadsheet"]], "create_drive_directory() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_drive_directory"]], "create_message() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_message"]], "create_sheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_sheet"]], "create_spreadsheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_spreadsheet"]], "create_storage_bucket() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_storage_bucket"]], "delete_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.delete_drive_file"]], "delete_sheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.delete_sheet"]], "delete_storage_bucket() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.delete_storage_bucket"]], "delete_storage_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.delete_storage_files"]], "detect_document() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.detect_document"]], "detect_labels() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.detect_labels"]], "detect_tables() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.detect_tables"]], "detect_text() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.detect_text"]], "download_drive_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.download_drive_files"]], "download_storage_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.download_storage_files"]], "export_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.export_drive_file"]], "face_detection() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.face_detection"]], "generic_spreadsheet_batch_update() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.generic_spreadsheet_batch_update"]], "get_all_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_all_sheet_values"]], "get_document_entities() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_document_entities"]], "get_document_languages() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_document_languages"]], "get_drive_file_by_id() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_drive_file_by_id"]], "get_drive_folder_id() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_drive_folder_id"]], "get_sheet_by_name() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_sheet_by_name"]], "get_sheet_formulas() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_sheet_formulas"]], "get_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_sheet_values"]], "get_spreadsheet_basic_information() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_spreadsheet_basic_information"]], "get_spreadsheet_details() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_spreadsheet_details"]], "get_storage_bucket() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_storage_bucket"]], "handle_mimetypes() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.handle_mimetypes"]], "init_apps_script() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_apps_script"]], "init_document_ai() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_document_ai"]], "init_drive() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_drive"]], "init_gmail() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_gmail"]], "init_natural_language() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_natural_language"]], "init_sheets() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_sheets"]], "init_speech_to_text() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_speech_to_text"]], "init_storage() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_storage"]], "init_text_to_speech() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_text_to_speech"]], "init_translation() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_translation"]], "init_video_intelligence() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_video_intelligence"]], "init_vision() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_vision"]], "insert_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.insert_sheet_values"]], "list_messages() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_messages"]], "list_processors() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_processors"]], "list_shared_drive_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_shared_drive_files"]], "list_storage_buckets() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_storage_buckets"]], "list_storage_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_storage_files"]], "list_supported_voices() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_supported_voices"]], "load_document_response() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.load_document_response"]], "move_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.move_drive_file"]], "parse_parts() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.parse_parts"]], "process_document() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.process_document"]], "recognize_text_from_audio() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.recognize_text_from_audio"]], "remove_all_drive_shares() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.remove_all_drive_shares"]], "remove_drive_share_by_criteria() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.remove_drive_share_by_criteria"]], "remove_drive_share_by_permission_id() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.remove_drive_share_by_permission_id"]], "rename_sheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.rename_sheet"]], "run_script() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.run_script"]], "save_document_response() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.save_document_response"]], "search_drive_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.search_drive_files"]], "send_message() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.send_message"]], "set_audio_type() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_audio_type"]], "set_headers_to_message_dict() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_headers_to_message_dict"]], "set_image_type() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_image_type"]], "set_list_parameters() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_list_parameters"]], "set_robocorp_vault() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_robocorp_vault"]], "synthesize_speech() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.synthesize_speech"]], "to_a1_notation() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.to_A1_notation"]], "to_column_letter() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.to_column_letter"]], "translate() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.translate"]], "update_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.update_drive_file"]], "update_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.update_sheet_values"]], "upload_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.upload_drive_file"]], "upload_storage_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.upload_storage_file"]], "upload_storage_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.upload_storage_files"]], "crypto (class in rpa.crypto)": [[21, "RPA.Crypto.Crypto"]], "robot_library_doc_format (rpa.crypto.crypto attribute)": [[21, "RPA.Crypto.Crypto.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.crypto.crypto attribute)": [[21, "RPA.Crypto.Crypto.ROBOT_LIBRARY_SCOPE"]], "decrypt_file() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.decrypt_file"]], "decrypt_string() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.decrypt_string"]], "encrypt_file() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.encrypt_file"]], "encrypt_string() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.encrypt_string"]], "generate_key() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.generate_key"]], "hash_file() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.hash_file"]], "hash_string() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.hash_string"]], "use_encryption_key() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.use_encryption_key"]], "use_encryption_key_from_vault() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.use_encryption_key_from_vault"]], "database (class in rpa.database)": [[23, "RPA.Database.Database"]], "robot_library_doc_format (rpa.database.database attribute)": [[23, "RPA.Database.Database.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.database.database attribute)": [[23, "RPA.Database.Database.ROBOT_LIBRARY_SCOPE"]], "call_stored_procedure() (rpa.database.database method)": [[23, "RPA.Database.Database.call_stored_procedure"]], "connect_to_database() (rpa.database.database method)": [[23, "RPA.Database.Database.connect_to_database"]], "description() (rpa.database.database method)": [[23, "RPA.Database.Database.description"]], "disconnect_from_database() (rpa.database.database method)": [[23, "RPA.Database.Database.disconnect_from_database"]], "execute_sql_script() (rpa.database.database method)": [[23, "RPA.Database.Database.execute_sql_script"]], "get_number_of_rows() (rpa.database.database method)": [[23, "RPA.Database.Database.get_number_of_rows"]], "get_rows() (rpa.database.database method)": [[23, "RPA.Database.Database.get_rows"]], "query() (rpa.database.database method)": [[23, "RPA.Database.Database.query"]], "set_auto_commit() (rpa.database.database method)": [[23, "RPA.Database.Database.set_auto_commit"]], "desktop (class in rpa.desktop)": [[25, "RPA.Desktop.Desktop"]], "robot_library_doc_format (rpa.desktop.desktop attribute)": [[25, "RPA.Desktop.Desktop.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.desktop.desktop attribute)": [[25, "RPA.Desktop.Desktop.ROBOT_LIBRARY_SCOPE"]], "add_library_components() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.add_library_components"]], "get_keyword_arguments() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_arguments"]], "get_keyword_documentation() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_documentation"]], "get_keyword_names() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_names"]], "get_keyword_source() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_source"]], "get_keyword_tags() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_tags"]], "get_keyword_types() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_types"]], "run_keyword() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.run_keyword"]], "clipboard (class in rpa.desktop.clipboard)": [[27, "RPA.Desktop.Clipboard.Clipboard"]], "robot_library_doc_format (rpa.desktop.clipboard.clipboard attribute)": [[27, "RPA.Desktop.Clipboard.Clipboard.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.desktop.clipboard.clipboard attribute)": [[27, "RPA.Desktop.Clipboard.Clipboard.ROBOT_LIBRARY_SCOPE"]], "clear_clipboard() (rpa.desktop.clipboard.clipboard method)": [[27, "RPA.Desktop.Clipboard.Clipboard.clear_clipboard"]], "copy_to_clipboard() (rpa.desktop.clipboard.clipboard method)": [[27, "RPA.Desktop.Clipboard.Clipboard.copy_to_clipboard"]], "paste_from_clipboard() (rpa.desktop.clipboard.clipboard method)": [[27, "RPA.Desktop.Clipboard.Clipboard.paste_from_clipboard"]], "operatingsystem (class in rpa.desktop.operatingsystem)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem"]], "robot_library_doc_format (rpa.desktop.operatingsystem.operatingsystem attribute)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.desktop.operatingsystem.operatingsystem attribute)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.ROBOT_LIBRARY_SCOPE"]], "boot_time_in_seconds_from_epoch() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.boot_time_in_seconds_from_epoch"]], "get_boot_time() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.get_boot_time"]], "get_machine_name() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.get_machine_name"]], "get_memory_stats() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.get_memory_stats"]], "get_username() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.get_username"]], "kill_process() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.kill_process"]], "kill_process_by_pid() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.kill_process_by_pid"]], "process_exists() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.process_exists"]], "process_id_exists() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.process_id_exists"]], "put_system_to_sleep() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.put_system_to_sleep"]], "robot_library_doc_format (rpa.desktop.windows.windows attribute)": [[31, "RPA.Desktop.Windows.Windows.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.desktop.windows.windows attribute)": [[31, "RPA.Desktop.Windows.Windows.ROBOT_LIBRARY_SCOPE"]], "windows (class in rpa.desktop.windows)": [[31, "RPA.Desktop.Windows.Windows"]], "boot_time_in_seconds_from_epoch() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.boot_time_in_seconds_from_epoch"]], "calculate_rectangle_center() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.calculate_rectangle_center"]], "click_type() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.click_type"]], "close_all_applications() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.close_all_applications"]], "connect_by_handle() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.connect_by_handle"]], "connect_by_pid() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.connect_by_pid"]], "drag_and_drop() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.drag_and_drop"]], "find_element() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.find_element"]], "get_app() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_app"]], "get_boot_time() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_boot_time"]], "get_dialog_rectangle() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_dialog_rectangle"]], "get_element() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_element"]], "get_element_center() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_element_center"]], "get_element_rectangle() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_element_rectangle"]], "get_element_rich_text() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_element_rich_text"]], "get_machine_name() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_machine_name"]], "get_memory_stats() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_memory_stats"]], "get_open_applications() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_open_applications"]], "get_spaced_string() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_spaced_string"]], "get_text() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_text"]], "get_username() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_username"]], "get_window_elements() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_window_elements"]], "get_window_list() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_window_list"]], "is_element_enabled() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.is_element_enabled"]], "is_element_matching() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.is_element_matching"]], "is_element_visible() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.is_element_visible"]], "kill_process() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.kill_process"]], "kill_process_by_pid() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.kill_process_by_pid"]], "lock_screen() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.lock_screen"]], "log_in() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.log_in"]], "menu_select() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.menu_select"]], "minimize_dialog() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.minimize_dialog"]], "mouse_click() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.mouse_click"]], "mouse_click_coords() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.mouse_click_coords"]], "mouse_click_image() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.mouse_click_image"]], "open_application() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_application"]], "open_dialog() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_dialog"]], "open_executable() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_executable"]], "open_file() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_file"]], "open_from_search() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_from_search"]], "open_using_run_dialog() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_using_run_dialog"]], "process_exists() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.process_exists"]], "process_id_exists() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.process_id_exists"]], "put_system_to_sleep() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.put_system_to_sleep"]], "quit_application() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.quit_application"]], "refresh_window() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.refresh_window"]], "restore_dialog() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.restore_dialog"]], "screenshot() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.screenshot"]], "send_keys() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.send_keys"]], "send_keys_to_input() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.send_keys_to_input"]], "set_automation_speed() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.set_automation_speed"]], "set_windows_backend() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.set_windows_backend"]], "switch_to_application() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.switch_to_application"]], "type_into() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.type_into"]], "type_keys() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.type_keys"]], "wait_for_element() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.wait_for_element"]], "documentai (class in rpa.documentai.documentai)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI"]], "robot_auto_keywords (rpa.documentai.documentai.documentai attribute)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.documentai.documentai.documentai attribute)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.documentai.documentai.documentai attribute)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.ROBOT_LIBRARY_SCOPE"]], "engine (rpa.documentai.documentai.documentai property)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.engine"]], "get_result() (rpa.documentai.documentai.documentai method)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.get_result"]], "init_engine() (rpa.documentai.documentai.documentai method)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.init_engine"]], "predict() (rpa.documentai.documentai.documentai method)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.predict"]], "result (rpa.documentai.documentai.documentai property)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.result"]], "switch_engine() (rpa.documentai.documentai.documentai method)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.switch_engine"]], "base_url (rpa.documentai.base64ai.base64ai attribute)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.BASE_URL"]], "base64ai (class in rpa.documentai.base64ai)": [[35, "RPA.DocumentAI.Base64AI.Base64AI"]], "robot_library_doc_format (rpa.documentai.base64ai.base64ai attribute)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.documentai.base64ai.base64ai attribute)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.ROBOT_LIBRARY_SCOPE"]], "filter_matching_signatures() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.filter_matching_signatures"]], "get_fields_from_prediction_result() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.get_fields_from_prediction_result"]], "get_matching_signatures() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.get_matching_signatures"]], "get_signature_image() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.get_signature_image"]], "get_user_data() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.get_user_data"]], "scan_document_file() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.scan_document_file"]], "scan_document_url() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.scan_document_url"]], "set_authorization() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.set_authorization"]], "nanonets (class in rpa.documentai.nanonets)": [[37, "RPA.DocumentAI.Nanonets.Nanonets"]], "robot_library_doc_format (rpa.documentai.nanonets.nanonets attribute)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.documentai.nanonets.nanonets attribute)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.ROBOT_LIBRARY_SCOPE"]], "get_all_models() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.get_all_models"]], "get_fields_from_prediction_result() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.get_fields_from_prediction_result"]], "get_tables_from_prediction_result() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.get_tables_from_prediction_result"]], "ocr_fulltext() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.ocr_fulltext"]], "predict_file() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.predict_file"]], "set_authorization() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.set_authorization"]], "exchange (class in rpa.email.exchange)": [[39, "RPA.Email.Exchange.Exchange"]], "robot_library_doc_format (rpa.email.exchange.exchange attribute)": [[39, "RPA.Email.Exchange.Exchange.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.email.exchange.exchange attribute)": [[39, "RPA.Email.Exchange.Exchange.ROBOT_LIBRARY_SCOPE"]], "to_protect (rpa.email.exchange.exchange attribute)": [[39, "RPA.Email.Exchange.Exchange.TO_PROTECT"]], "authorize() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.authorize"]], "create_folder() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.create_folder"]], "delete_folder() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.delete_folder"]], "delete_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.delete_message"]], "empty_folder() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.empty_folder"]], "forward_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.forward_message"]], "generate_oauth_url() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.generate_oauth_url"]], "get_oauth_token() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.get_oauth_token"]], "list_messages() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.list_messages"]], "list_unread_messages() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.list_unread_messages"]], "move_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.move_message"]], "move_messages() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.move_messages"]], "refresh_oauth_token() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.refresh_oauth_token"]], "rename_folder() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.rename_folder"]], "save_attachments() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.save_attachments"]], "save_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.save_message"]], "send_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.send_message"]], "send_reply_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.send_reply_message"]], "wait_for_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.wait_for_message"]], "imapsmtp (class in rpa.email.imapsmtp)": [[41, "RPA.Email.ImapSmtp.ImapSmtp"]], "robot_library_doc_format (rpa.email.imapsmtp.imapsmtp attribute)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.email.imapsmtp.imapsmtp attribute)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.ROBOT_LIBRARY_SCOPE"]], "to_protect (rpa.email.imapsmtp.imapsmtp attribute)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.TO_PROTECT"]], "add_gmail_labels() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.add_gmail_labels"]], "authorize() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.authorize"]], "authorize_imap() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.authorize_imap"]], "authorize_smtp() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.authorize_smtp"]], "convert_eml_file_into_message() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.convert_eml_file_into_message"]], "create_folder() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.create_folder"]], "delete_folder() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.delete_folder"]], "delete_message() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.delete_message"]], "delete_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.delete_messages"]], "do_message_actions() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.do_message_actions"]], "email_to_document() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.email_to_document"]], "flag_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.flag_messages"]], "generate_oauth_string() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.generate_oauth_string"]], "generate_oauth_url() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.generate_oauth_url"]], "get_decoded_email_body() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.get_decoded_email_body"]], "get_folder_list() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.get_folder_list"]], "get_oauth_token() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.get_oauth_token"]], "list_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.list_messages"]], "mark_as_read() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.mark_as_read"]], "mark_as_unread() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.mark_as_unread"]], "move_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.move_messages"]], "move_messages_by_ids() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.move_messages_by_ids"]], "refresh_oauth_token() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.refresh_oauth_token"]], "remove_gmail_labels() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.remove_gmail_labels"]], "rename_folder() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.rename_folder"]], "save_attachment() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.save_attachment"]], "save_attachments() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.save_attachments"]], "save_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.save_messages"]], "select_folder() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.select_folder"]], "send_message() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.send_message"]], "send_smtp_hello() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.send_smtp_hello"]], "set_credentials() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.set_credentials"]], "unflag_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.unflag_messages"]], "wait_for_message() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.wait_for_message"]], "app_dispatch (rpa.excel.application.application attribute)": [[43, "RPA.Excel.Application.Application.APP_DISPATCH"]], "application (class in rpa.excel.application)": [[43, "RPA.Excel.Application.Application"]], "robot_library_doc_format (rpa.excel.application.application attribute)": [[43, "RPA.Excel.Application.Application.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.excel.application.application attribute)": [[43, "RPA.Excel.Application.Application.ROBOT_LIBRARY_SCOPE"]], "add_new_sheet() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.add_new_sheet"]], "add_new_workbook() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.add_new_workbook"]], "app (rpa.excel.application.application property)": [[43, "RPA.Excel.Application.Application.app"]], "close_document() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.close_document"]], "create_pivot_field() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.create_pivot_field"]], "create_pivot_table() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.create_pivot_table"]], "create_table() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.create_table"]], "export_as_pdf() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.export_as_pdf"]], "find() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.find"]], "find_first_available_cell() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.find_first_available_cell"]], "find_first_available_row() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.find_first_available_row"]], "get_pivot_tables() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.get_pivot_tables"]], "get_range() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.get_range"]], "list_tables() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.list_tables"]], "merge_range() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.merge_range"]], "open_application() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.open_application"]], "open_workbook() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.open_workbook"]], "quit_application() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.quit_application"]], "read_from_cells() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.read_from_cells"]], "remove_hidden_columns_and_rows() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.remove_hidden_columns_and_rows"]], "run_macro() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.run_macro"]], "save_excel() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.save_excel"]], "save_excel_as() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.save_excel_as"]], "set_active_worksheet() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.set_active_worksheet"]], "set_object_property() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.set_object_property"]], "unmerge_range() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.unmerge_range"]], "write_data_to_range() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.write_data_to_range"]], "write_to_cells() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.write_to_cells"]], "files (class in rpa.excel.files)": [[45, "RPA.Excel.Files.Files"]], "robot_library_doc_format (rpa.excel.files.files attribute)": [[45, "RPA.Excel.Files.Files.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.excel.files.files attribute)": [[45, "RPA.Excel.Files.Files.ROBOT_LIBRARY_SCOPE"]], "append_rows_to_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.append_rows_to_worksheet"]], "auto_size_columns() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.auto_size_columns"]], "clear_cell_range() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.clear_cell_range"]], "close_workbook() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.close_workbook"]], "copy_cell_values() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.copy_cell_values"]], "create_workbook() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.create_workbook"]], "create_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.create_worksheet"]], "delete_columns() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.delete_columns"]], "delete_rows() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.delete_rows"]], "find_empty_row() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.find_empty_row"]], "get_active_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.get_active_worksheet"]], "get_cell_value() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.get_cell_value"]], "get_worksheet_value() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.get_worksheet_value"]], "hide_columns() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.hide_columns"]], "insert_columns_after() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_columns_after"]], "insert_columns_before() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_columns_before"]], "insert_image_to_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_image_to_worksheet"]], "insert_rows_after() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_rows_after"]], "insert_rows_before() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_rows_before"]], "list_worksheets() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.list_worksheets"]], "move_range() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.move_range"]], "open_workbook() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.open_workbook"]], "read_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.read_worksheet"]], "read_worksheet_as_table() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.read_worksheet_as_table"]], "remove_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.remove_worksheet"]], "rename_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.rename_worksheet"]], "save_workbook() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.save_workbook"]], "set_active_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_active_worksheet"]], "set_cell_format() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_cell_format"]], "set_cell_formula() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_cell_formula"]], "set_cell_value() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_cell_value"]], "set_cell_values() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_cell_values"]], "set_styles() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_styles"]], "set_worksheet_value() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_worksheet_value"]], "unhide_columns() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.unhide_columns"]], "worksheet_exists() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.worksheet_exists"]], "filesystem (class in rpa.filesystem)": [[47, "RPA.FileSystem.FileSystem"]], "path_type (rpa.filesystem.filesystem attribute)": [[47, "RPA.FileSystem.FileSystem.PATH_TYPE"]], "robot_library_doc_format (rpa.filesystem.filesystem attribute)": [[47, "RPA.FileSystem.FileSystem.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.filesystem.filesystem attribute)": [[47, "RPA.FileSystem.FileSystem.ROBOT_LIBRARY_SCOPE"]], "absolute_path() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.absolute_path"]], "append_to_binary_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.append_to_binary_file"]], "append_to_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.append_to_file"]], "change_file_extension() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.change_file_extension"]], "copy_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.copy_directory"]], "copy_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.copy_file"]], "copy_files() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.copy_files"]], "create_binary_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.create_binary_file"]], "create_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.create_directory"]], "create_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.create_file"]], "does_directory_exist() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.does_directory_exist"]], "does_directory_not_exist() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.does_directory_not_exist"]], "does_file_exist() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.does_file_exist"]], "does_file_not_exist() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.does_file_not_exist"]], "empty_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.empty_directory"]], "find_files() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.find_files"]], "get_file_creation_date() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_creation_date"]], "get_file_extension() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_extension"]], "get_file_modified_date() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_modified_date"]], "get_file_name() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_name"]], "get_file_owner() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_owner"]], "get_file_size() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_size"]], "get_file_stem() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_stem"]], "is_directory_empty() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.is_directory_empty"]], "is_directory_not_empty() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.is_directory_not_empty"]], "is_file_empty() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.is_file_empty"]], "is_file_not_empty() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.is_file_not_empty"]], "join_path() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.join_path"]], "list_directories_in_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.list_directories_in_directory"]], "list_files_in_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.list_files_in_directory"]], "log_directory_tree() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.log_directory_tree"]], "move_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.move_directory"]], "move_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.move_file"]], "move_files() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.move_files"]], "normalize_path() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.normalize_path"]], "read_binary_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.read_binary_file"]], "read_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.read_file"]], "remove_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.remove_directory"]], "remove_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.remove_file"]], "remove_files() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.remove_files"]], "run_keyword_if_file_exists() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.run_keyword_if_file_exists"]], "touch_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.touch_file"]], "wait_until_created() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.wait_until_created"]], "wait_until_modified() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.wait_until_modified"]], "wait_until_removed() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.wait_until_removed"]], "ftp (class in rpa.ftp)": [[49, "RPA.FTP.FTP"]], "robot_library_doc_format (rpa.ftp.ftp attribute)": [[49, "RPA.FTP.FTP.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.ftp.ftp attribute)": [[49, "RPA.FTP.FTP.ROBOT_LIBRARY_SCOPE"]], "abort() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.abort"]], "close() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.close"]], "connect() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.connect"]], "cwd() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.cwd"]], "delete() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.delete"]], "download() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.download"]], "file_size() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.file_size"]], "get_welcome_message() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.get_welcome_message"]], "list_files() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.list_files"]], "mkd() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.mkd"]], "pwd() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.pwd"]], "quit() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.quit"]], "rename() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.rename"]], "rmd() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.rmd"]], "send_command() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.send_command"]], "set_ascii_mode() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.set_ascii_mode"]], "set_binary_mode() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.set_binary_mode"]], "set_debug_level() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.set_debug_level"]], "upload() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.upload"]], "default_retry_method_list (rpa.http.http attribute)": [[51, "RPA.HTTP.HTTP.DEFAULT_RETRY_METHOD_LIST"]], "http (class in rpa.http)": [[51, "RPA.HTTP.HTTP"]], "robot_library_doc_format (rpa.http.http attribute)": [[51, "RPA.HTTP.HTTP.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.http.http attribute)": [[51, "RPA.HTTP.HTTP.ROBOT_LIBRARY_SCOPE"]], "check_vulnerabilities() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.check_vulnerabilities"]], "create_client_cert_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_client_cert_session"]], "create_custom_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_custom_session"]], "create_digest_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_digest_session"]], "create_ntlm_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_ntlm_session"]], "create_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_session"]], "delete_all_sessions() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.delete_all_sessions"]], "delete_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.delete_on_session"]], "delete_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.delete_request"]], "download() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.download"]], "get_current_session_alias() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.get_current_session_alias"]], "get_file_for_streaming_upload() (rpa.http.http static method)": [[51, "RPA.HTTP.HTTP.get_file_for_streaming_upload"]], "get_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.get_on_session"]], "get_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.get_request"]], "head_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.head_on_session"]], "head_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.head_request"]], "http_get() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.http_get"]], "options_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.options_on_session"]], "options_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.options_request"]], "patch_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.patch_on_session"]], "patch_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.patch_request"]], "post_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.post_on_session"]], "post_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.post_request"]], "put_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.put_on_session"]], "put_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.put_request"]], "request_should_be_successful() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.request_should_be_successful"]], "session_exists() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_exists"]], "session_less_delete() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_delete"]], "session_less_get() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_get"]], "session_less_head() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_head"]], "session_less_options() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_options"]], "session_less_patch() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_patch"]], "session_less_post() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_post"]], "session_less_put() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_put"]], "status_should_be() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.status_should_be"]], "to_json() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.to_json"]], "update_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.update_session"]], "builtin_plural_map (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.BUILTIN_PLURAL_MAP"]], "builtin_singular_map (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.BUILTIN_SINGULAR_MAP"]], "hubspot (class in rpa.hubspot)": [[53, "RPA.Hubspot.Hubspot"]], "robot_auto_keywords (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.ROBOT_LIBRARY_SCOPE"]], "add_input_to_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.add_input_to_batch"]], "auth_with_api_key() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.auth_with_api_key"]], "auth_with_token() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.auth_with_token"]], "batch_input (rpa.hubspot.hubspot property)": [[53, "RPA.Hubspot.Hubspot.batch_input"]], "clear_current_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.clear_current_batch"]], "create_new_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.create_new_batch"]], "create_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.create_object"]], "execute_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.execute_batch"]], "extend_batch_with_inputs() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.extend_batch_with_inputs"]], "get_current_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_current_batch"]], "get_current_batch_inputs() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_current_batch_inputs"]], "get_current_stage_of_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_current_stage_of_object"]], "get_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_object"]], "get_owner_by_id() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_owner_by_id"]], "get_owner_of_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_owner_of_object"]], "get_pipeline() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_pipeline"]], "get_pipeline_stages() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_pipeline_stages"]], "get_user() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_user"]], "list_associations() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.list_associations"]], "list_pipelines() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.list_pipelines"]], "pipelines (rpa.hubspot.hubspot property)": [[53, "RPA.Hubspot.Hubspot.pipelines"]], "schemas (rpa.hubspot.hubspot property)": [[53, "RPA.Hubspot.Hubspot.schemas"]], "search_for_objects() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.search_for_objects"]], "set_association() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.set_association"]], "set_current_batch_input() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.set_current_batch_input"]], "update_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.update_object"]], "images (class in rpa.images)": [[55, "RPA.Images.Images"]], "robot_library_doc_format (rpa.images.images attribute)": [[55, "RPA.Images.Images.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.images.images attribute)": [[55, "RPA.Images.Images.ROBOT_LIBRARY_SCOPE"]], "crop_image() (rpa.images.images method)": [[55, "RPA.Images.Images.crop_image"]], "find_template_in_image() (rpa.images.images method)": [[55, "RPA.Images.Images.find_template_in_image"]], "get_pixel_color_in_image() (rpa.images.images method)": [[55, "RPA.Images.Images.get_pixel_color_in_image"]], "show_region_in_image() (rpa.images.images method)": [[55, "RPA.Images.Images.show_region_in_image"]], "javaaccessbridge (class in rpa.javaaccessbridge)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge"]], "robot_auto_keywords (rpa.javaaccessbridge.javaaccessbridge attribute)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.javaaccessbridge.javaaccessbridge attribute)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.javaaccessbridge.javaaccessbridge attribute)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.ROBOT_LIBRARY_SCOPE"]], "application_refresh() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.application_refresh"]], "call_element_action() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.call_element_action"]], "click_coordinates() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.click_coordinates"]], "click_element() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.click_element"]], "click_push_button() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.click_push_button"]], "close_java_window() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.close_java_window"]], "get_element_actions() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_element_actions"]], "get_element_text() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_element_text"]], "get_elements() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_elements"]], "get_locator_tree() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_locator_tree"]], "get_version_info() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_version_info"]], "highlight_element() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.highlight_element"]], "list_java_windows() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.list_java_windows"]], "press_keys() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.press_keys"]], "print_element_tree() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.print_element_tree"]], "print_locator_tree() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.print_locator_tree"]], "read_table() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.read_table"]], "refresh_element() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.refresh_element"]], "select_menu() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.select_menu"]], "select_window() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.select_window"]], "select_window_by_pid() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.select_window_by_pid"]], "select_window_by_title() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.select_window_by_title"]], "set_display_scale_factor() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.set_display_scale_factor"]], "set_mouse_position() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.set_mouse_position"]], "shutdown_jab() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.shutdown_jab"]], "toggle_drop_down() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.toggle_drop_down"]], "type_text() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.type_text"]], "wait_until_element_exists() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.wait_until_element_exists"]], "wait_until_element_is_focused() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.wait_until_element_is_focused"]], "wait_until_element_text_contains() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.wait_until_element_text_contains"]], "wait_until_element_text_equals() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.wait_until_element_text_equals"]], "json (class in rpa.json)": [[59, "RPA.JSON.JSON"]], "robot_library_doc_format (rpa.json.json attribute)": [[59, "RPA.JSON.JSON.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.json.json attribute)": [[59, "RPA.JSON.JSON.ROBOT_LIBRARY_SCOPE"]], "add_to_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.add_to_json"]], "convert_json_to_string() (rpa.json.json method)": [[59, "RPA.JSON.JSON.convert_json_to_string"]], "convert_string_to_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.convert_string_to_json"]], "delete_from_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.delete_from_json"]], "get_value_from_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.get_value_from_json"]], "get_values_from_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.get_values_from_json"]], "load_json_from_file() (rpa.json.json method)": [[59, "RPA.JSON.JSON.load_json_from_file"]], "save_json_to_file() (rpa.json.json method)": [[59, "RPA.JSON.JSON.save_json_to_file"]], "update_value_to_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.update_value_to_json"]], "mfa (class in rpa.mfa)": [[61, "RPA.MFA.MFA"]], "robot_library_doc_format (rpa.mfa.mfa attribute)": [[61, "RPA.MFA.MFA.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.mfa.mfa attribute)": [[61, "RPA.MFA.MFA.ROBOT_LIBRARY_SCOPE"]], "generate_oauth_url() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.generate_oauth_url"]], "get_counter_based_otp() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.get_counter_based_otp"]], "get_oauth_token() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.get_oauth_token"]], "get_time_based_otp() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.get_time_based_otp"]], "oauth (rpa.mfa.mfa property)": [[61, "RPA.MFA.MFA.oauth"]], "refresh_oauth_token() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.refresh_oauth_token"]], "set_counter_based_otp() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.set_counter_based_otp"]], "set_time_based_otp() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.set_time_based_otp"]], "use_mfa_secret_from_vault() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.use_mfa_secret_from_vault"]], "msgraph (class in rpa.msgraph)": [[63, "RPA.MSGraph.MSGraph"]], "robot_library_doc_format (rpa.msgraph.msgraph attribute)": [[63, "RPA.MSGraph.MSGraph.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.msgraph.msgraph attribute)": [[63, "RPA.MSGraph.MSGraph.ROBOT_LIBRARY_SCOPE"]], "authorize_and_get_token() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.authorize_and_get_token"]], "configure_msgraph_client() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.configure_msgraph_client"]], "create_sharepoint_list() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.create_sharepoint_list"]], "download_file_from_onedrive() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.download_file_from_onedrive"]], "download_file_from_share_link() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.download_file_from_share_link"]], "download_file_from_sharepoint() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.download_file_from_sharepoint"]], "download_folder_from_onedrive() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.download_folder_from_onedrive"]], "find_onedrive_file() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.find_onedrive_file"]], "generate_oauth_authorization_url() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.generate_oauth_authorization_url"]], "get_drive_instance() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_drive_instance"]], "get_file_instance() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_file_instance"]], "get_folder_instance() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_folder_instance"]], "get_items_from_sharepoint_list() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_items_from_sharepoint_list"]], "get_me() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_me"]], "get_scopes() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_scopes"]], "get_sharepoint_site() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_sharepoint_site"]], "list_files_in_onedrive_folder() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.list_files_in_onedrive_folder"]], "list_files_in_sharepoint_site_drive() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.list_files_in_sharepoint_site_drive"]], "list_sharepoint_site_drives() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.list_sharepoint_site_drives"]], "refresh_oauth_token() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.refresh_oauth_token"]], "search_for_users() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.search_for_users"]], "upload_file_to_onedrive() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.upload_file_to_onedrive"]], "netsuite (class in rpa.netsuite)": [[65, "RPA.Netsuite.Netsuite"]], "robot_library_doc_format (rpa.netsuite.netsuite attribute)": [[65, "RPA.Netsuite.Netsuite.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.netsuite.netsuite attribute)": [[65, "RPA.Netsuite.Netsuite.ROBOT_LIBRARY_SCOPE"]], "connect() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.connect"]], "get_accounts() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_accounts"]], "get_classifications() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_classifications"]], "get_currencies() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_currencies"]], "get_currency() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_currency"]], "get_departments() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_departments"]], "get_locations() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_locations"]], "get_vendor_bills() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_vendor_bills"]], "get_vendors() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_vendors"]], "login() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.login"]], "netsuite_get() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.netsuite_get"]], "netsuite_get_all() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.netsuite_get_all"]], "netsuite_search() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.netsuite_search"]], "netsuite_search_all() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.netsuite_search_all"]], "notifier (class in rpa.notifier)": [[67, "RPA.Notifier.Notifier"]], "robot_library_doc_format (rpa.notifier.notifier attribute)": [[67, "RPA.Notifier.Notifier.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.notifier.notifier attribute)": [[67, "RPA.Notifier.Notifier.ROBOT_LIBRARY_SCOPE"]], "generic_notify() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.generic_notify"]], "notify_email() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_email"]], "notify_gmail() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_gmail"]], "notify_pushover() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_pushover"]], "notify_slack() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_slack"]], "notify_telegram() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_telegram"]], "notify_twilio() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_twilio"]], "openai (class in rpa.openai)": [[69, "RPA.OpenAI.OpenAI"]], "robot_library_doc_format (rpa.openai.openai attribute)": [[69, "RPA.OpenAI.OpenAI.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.openai.openai attribute)": [[69, "RPA.OpenAI.OpenAI.ROBOT_LIBRARY_SCOPE"]], "authorize_to_azure_openai() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.authorize_to_azure_openai"]], "authorize_to_openai() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.authorize_to_openai"]], "chat_completion_create() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.chat_completion_create"]], "completion_create() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.completion_create"]], "image_create() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.image_create"]], "image_create_variation() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.image_create_variation"]], "app_dispatch (rpa.outlook.application.application attribute)": [[71, "RPA.Outlook.Application.Application.APP_DISPATCH"]], "application (class in rpa.outlook.application)": [[71, "RPA.Outlook.Application.Application"]], "robot_library_doc_format (rpa.outlook.application.application attribute)": [[71, "RPA.Outlook.Application.Application.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.outlook.application.application attribute)": [[71, "RPA.Outlook.Application.Application.ROBOT_LIBRARY_SCOPE"]], "app (rpa.outlook.application.application property)": [[71, "RPA.Outlook.Application.Application.app"]], "close_document() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.close_document"]], "get_emails() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.get_emails"]], "mark_email_as_read() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.mark_email_as_read"]], "move_emails() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.move_emails"]], "open_application() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.open_application"]], "quit_application() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.quit_application"]], "save_email_attachments() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.save_email_attachments"]], "send_email() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.send_email"]], "set_object_property() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.set_object_property"]], "wait_for_email() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.wait_for_email"]], "pdf (class in rpa.pdf)": [[73, "RPA.PDF.PDF"]], "robot_library_doc_format (rpa.pdf.pdf attribute)": [[73, "RPA.PDF.PDF.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.pdf.pdf attribute)": [[73, "RPA.PDF.PDF.ROBOT_LIBRARY_SCOPE"]], "add_library_components() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.add_library_components"]], "get_keyword_arguments() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_arguments"]], "get_keyword_documentation() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_documentation"]], "get_keyword_names() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_names"]], "get_keyword_source() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_source"]], "get_keyword_tags() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_tags"]], "get_keyword_types() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_types"]], "run_keyword() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.run_keyword"]], "process (class in rpa.robocorp.process)": [[75, "RPA.Robocorp.Process.Process"]], "robot_auto_keywords (rpa.robocorp.process.process attribute)": [[75, "RPA.Robocorp.Process.Process.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.robocorp.process.process attribute)": [[75, "RPA.Robocorp.Process.Process.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.robocorp.process.process attribute)": [[75, "RPA.Robocorp.Process.Process.ROBOT_LIBRARY_SCOPE"]], "base_api (rpa.robocorp.process.process property)": [[75, "RPA.Robocorp.Process.Process.base_api"]], "create_input_work_item() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.create_input_work_item"]], "get_process_id_by_name() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.get_process_id_by_name"]], "get_process_run_status() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.get_process_run_status"]], "get_robot_run_artifact() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.get_robot_run_artifact"]], "get_work_item() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.get_work_item"]], "headers (rpa.robocorp.process.process property)": [[75, "RPA.Robocorp.Process.Process.headers"]], "list_process_run_work_items() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_process_run_work_items"]], "list_process_runs() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_process_runs"]], "list_process_runs_in_workspace() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_process_runs_in_workspace"]], "list_process_work_items() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_process_work_items"]], "list_processes() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_processes"]], "list_run_artifacts() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_run_artifacts"]], "process_api() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.process_api"]], "register_file_upload() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.register_file_upload"]], "retry_work_item() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.retry_work_item"]], "set_apikey() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.set_apikey"]], "set_credentials() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.set_credentials"]], "set_process_id() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.set_process_id"]], "set_workspace_id() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.set_workspace_id"]], "start_configured_process() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.start_configured_process"]], "start_process() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.start_process"]], "upload_file_to_s3() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.upload_file_to_s3"]], "workspace_api() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.workspace_api"]], "robot_library_doc_format (rpa.robocorp.vault.vault attribute)": [[77, "RPA.Robocorp.Vault.Vault.ROBOT_LIBRARY_DOC_FORMAT"], [79, "RPA.Robocorp.Vault.Vault.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.robocorp.vault.vault attribute)": [[77, "RPA.Robocorp.Vault.Vault.ROBOT_LIBRARY_SCOPE"], [79, "RPA.Robocorp.Vault.Vault.ROBOT_LIBRARY_SCOPE"]], "vault (class in rpa.robocorp.vault)": [[77, "RPA.Robocorp.Vault.Vault"], [79, "RPA.Robocorp.Vault.Vault"]], "adapter (rpa.robocorp.vault.vault property)": [[77, "RPA.Robocorp.Vault.Vault.adapter"], [79, "RPA.Robocorp.Vault.Vault.adapter"]], "get_secret() (rpa.robocorp.vault.vault method)": [[77, "RPA.Robocorp.Vault.Vault.get_secret"], [79, "RPA.Robocorp.Vault.Vault.get_secret"]], "set_secret() (rpa.robocorp.vault.vault method)": [[77, "RPA.Robocorp.Vault.Vault.set_secret"], [79, "RPA.Robocorp.Vault.Vault.set_secret"]], "email_body_loaders (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.EMAIL_BODY_LOADERS"]], "robot_auto_keywords (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.ROBOT_LIBRARY_SCOPE"]], "robot_listener_api_version (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.ROBOT_LISTENER_API_VERSION"]], "workitems (class in rpa.robocorp.workitems)": [[81, "RPA.Robocorp.WorkItems.WorkItems"]], "active_input (rpa.robocorp.workitems.workitems property)": [[81, "RPA.Robocorp.WorkItems.WorkItems.active_input"]], "adapter (rpa.robocorp.workitems.workitems property)": [[81, "RPA.Robocorp.WorkItems.WorkItems.adapter"]], "add_work_item_file() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.add_work_item_file"]], "add_work_item_files() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.add_work_item_files"]], "clear_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.clear_work_item"]], "create_output_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.create_output_work_item"]], "current (rpa.robocorp.workitems.workitems property)": [[81, "RPA.Robocorp.WorkItems.WorkItems.current"]], "delete_work_item_variables() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.delete_work_item_variables"]], "for_each_input_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.for_each_input_work_item"]], "get_current_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_current_work_item"]], "get_input_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_input_work_item"]], "get_work_item_file() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_file"]], "get_work_item_files() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_files"]], "get_work_item_payload() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_payload"]], "get_work_item_variable() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_variable"]], "get_work_item_variables() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_variables"]], "inputs (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.inputs"]], "list_work_item_files() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.list_work_item_files"]], "list_work_item_variables() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.list_work_item_variables"]], "outputs (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.outputs"]], "release_input_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.release_input_work_item"]], "remove_work_item_file() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.remove_work_item_file"]], "remove_work_item_files() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.remove_work_item_files"]], "root (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.root"]], "save_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.save_work_item"]], "set_current_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_current_work_item"]], "set_task_variables_from_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_task_variables_from_work_item"]], "set_work_item_payload() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_work_item_payload"]], "set_work_item_variable() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_work_item_variable"]], "set_work_item_variables() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_work_item_variables"]], "info_level_keywords (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.INFO_LEVEL_KEYWORDS"]], "keywords_to_mute (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.KEYWORDS_TO_MUTE"]], "keywords_to_protect (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.KEYWORDS_TO_PROTECT"]], "robot_library_doc_format (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.ROBOT_LIBRARY_SCOPE"]], "robot_listener_api_version (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.ROBOT_LISTENER_API_VERSION"]], "robotloglistener (class in rpa.robotloglistener)": [[83, "RPA.RobotLogListener.RobotLogListener"]], "end_keyword() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.end_keyword"]], "mute_run_on_failure() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.mute_run_on_failure"]], "only_info_level() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.only_info_level"]], "register_protected_keywords() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.register_protected_keywords"]], "start_keyword() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.start_keyword"]], "robot_library_doc_format (rpa.salesforce.salesforce attribute)": [[85, "RPA.Salesforce.Salesforce.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.salesforce.salesforce attribute)": [[85, "RPA.Salesforce.Salesforce.ROBOT_LIBRARY_SCOPE"]], "salesforce (class in rpa.salesforce)": [[85, "RPA.Salesforce.Salesforce"]], "account (rpa.salesforce.salesforce attribute)": [[85, "RPA.Salesforce.Salesforce.account"]], "add_product_into_opportunity() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.add_product_into_opportunity"]], "auth_with_connected_app() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.auth_with_connected_app"]], "auth_with_token() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.auth_with_token"]], "create_new_opportunity() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.create_new_opportunity"]], "create_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.create_salesforce_object"]], "delete_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.delete_salesforce_object"]], "describe_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.describe_salesforce_object"]], "execute_apex() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.execute_apex"]], "execute_dataloader_insert() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.execute_dataloader_insert"]], "get_dataloader_error_table() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_dataloader_error_table"]], "get_dataloader_success_table() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_dataloader_success_table"]], "get_domain() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_domain"]], "get_opportunity_id() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_opportunity_id"]], "get_pricebook_entries() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_pricebook_entries"]], "get_pricebook_id() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_pricebook_id"]], "get_products_in_pricelist() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_products_in_pricelist"]], "get_salesforce_object_by_id() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_salesforce_object_by_id"]], "get_salesforce_object_metadata() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_salesforce_object_metadata"]], "instance (rpa.salesforce.salesforce property)": [[85, "RPA.Salesforce.Salesforce.instance"]], "read_dictionary_from_file() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.read_dictionary_from_file"]], "salesforce_query() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.salesforce_query"]], "salesforce_query_result_as_table() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.salesforce_query_result_as_table"]], "session_id (rpa.salesforce.salesforce property)": [[85, "RPA.Salesforce.Salesforce.session_id"]], "set_account() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.set_account"]], "set_domain() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.set_domain"]], "set_pricebook() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.set_pricebook"]], "update_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.update_salesforce_object"]], "upsert_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.upsert_salesforce_object"]], "robot_library_scope (rpa.sap.sap attribute)": [[87, "RPA.SAP.SAP.ROBOT_LIBRARY_SCOPE"]], "sap (class in rpa.sap)": [[87, "RPA.SAP.SAP"]], "click_element() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.click_element"]], "click_toolbar_button() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.click_toolbar_button"]], "connect_to_existing_connection() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.connect_to_existing_connection"]], "connect_to_session() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.connect_to_session"]], "disable_screenshots_on_error() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.disable_screenshots_on_error"]], "doubleclick_element() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.doubleclick_element"]], "element_should_be_present() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.element_should_be_present"]], "element_value_should_be() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.element_value_should_be"]], "element_value_should_contain() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.element_value_should_contain"]], "enable_screenshots_on_error() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.enable_screenshots_on_error"]], "focus_and_click() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.focus_and_click"]], "focus_and_input_text() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.focus_and_input_text"]], "generic_click_element() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.generic_click_element"]], "generic_input_password() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.generic_input_password"]], "generic_input_text() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.generic_input_text"]], "get_cell_value() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_cell_value"]], "get_element_location() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_element_location"]], "get_element_type() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_element_type"]], "get_element_type_of_object() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_element_type_of_object"]], "get_row_count() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_row_count"]], "get_scroll_position() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_scroll_position"]], "get_statusbar_type() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_statusbar_type"]], "get_value() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_value"]], "get_window_title() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_window_title"]], "input_password() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.input_password"]], "input_text() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.input_text"]], "maximize_window() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.maximize_window"]], "open_connection() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.open_connection"]], "press_f1() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.press_f1"]], "press_f4() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.press_f4"]], "run_transaction() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.run_transaction"]], "scroll() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.scroll"]], "select_checkbox() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_checkbox"]], "select_context_menu_item() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_context_menu_item"]], "select_from_list_by_label() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_from_list_by_label"]], "select_node() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_node"]], "select_node_link() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_node_link"]], "select_radio_button() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_radio_button"]], "select_table_column() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_table_column"]], "select_table_row() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_table_row"]], "send_vkey() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.send_vkey"]], "set_cell_value() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.set_cell_value"]], "set_explicit_wait() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.set_explicit_wait"]], "set_focus() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.set_focus"]], "take_screenshot() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.take_screenshot"]], "unselect_checkbox() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.unselect_checkbox"]], "robot_library_doc_format (rpa.slack.slack attribute)": [[89, "RPA.Slack.Slack.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.slack.slack attribute)": [[89, "RPA.Slack.Slack.ROBOT_LIBRARY_SCOPE"]], "slack (class in rpa.slack)": [[89, "RPA.Slack.Slack"]], "slack_message_using_webhook() (rpa.slack.slack method)": [[89, "RPA.Slack.Slack.slack_message_using_webhook"]], "slack_raw_message() (rpa.slack.slack method)": [[89, "RPA.Slack.Slack.slack_raw_message"]], "robot_auto_keywords (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROBOT_LIBRARY_SCOPE"]], "row_excludes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROW_EXCLUDES"]], "row_includes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROW_INCLUDES"]], "search_includes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.SEARCH_INCLUDES"]], "search_scopes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.SEARCH_SCOPES"]], "sheet_includes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.SHEET_INCLUDES"]], "smartsheet (class in rpa.smartsheet)": [[91, "RPA.Smartsheet.Smartsheet"]], "add_column() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.add_column"]], "add_columns() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.add_columns"]], "add_rows() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.add_rows"]], "convert_row_to_dict() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.convert_row_to_dict"]], "convert_sheet_to_table() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.convert_sheet_to_table"]], "create_sheet() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.create_sheet"]], "download_attachment() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.download_attachment"]], "get_application_constants() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_application_constants"]], "get_cell_history() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_cell_history"]], "get_current_user() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_current_user"]], "get_row() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_row"]], "get_sheet() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_sheet"]], "get_sheet_owner() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_sheet_owner"]], "list_attachments() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.list_attachments"]], "list_columns() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.list_columns"]], "list_sheet_filters() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.list_sheet_filters"]], "list_sheets() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.list_sheets"]], "refresh_sheet() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.refresh_sheet"]], "search() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.search"]], "set_access_token() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.set_access_token"]], "set_max_retry_time() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.set_max_retry_time"]], "set_row() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.set_row"]], "set_rows() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.set_rows"]], "sheets (rpa.smartsheet.smartsheet property)": [[91, "RPA.Smartsheet.Smartsheet.sheets"]], "unselect_current_sheet() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.unselect_current_sheet"]], "update_column() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.update_column"]], "robot_library_doc_format (rpa.tables.tables attribute)": [[93, "RPA.Tables.Tables.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.tables.tables attribute)": [[93, "RPA.Tables.Tables.ROBOT_LIBRARY_SCOPE"]], "tables (class in rpa.tables)": [[93, "RPA.Tables.Tables"]], "add_table_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.add_table_column"]], "add_table_row() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.add_table_row"]], "clear_table() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.clear_table"]], "copy_table() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.copy_table"]], "create_table() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.create_table"]], "export_table() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.export_table"]], "filter_empty_rows() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.filter_empty_rows"]], "filter_table_by_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.filter_table_by_column"]], "filter_table_with_keyword() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.filter_table_with_keyword"]], "find_table_rows() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.find_table_rows"]], "get_table_cell() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_cell"]], "get_table_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_column"]], "get_table_dimensions() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_dimensions"]], "get_table_row() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_row"]], "get_table_slice() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_slice"]], "group_table_by_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.group_table_by_column"]], "map_column_values() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.map_column_values"]], "merge_tables() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.merge_tables"]], "pop_table_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.pop_table_column"]], "pop_table_row() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.pop_table_row"]], "read_table_from_csv() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.read_table_from_csv"]], "rename_table_columns() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.rename_table_columns"]], "set_row_as_column_names() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.set_row_as_column_names"]], "set_table_cell() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.set_table_cell"]], "set_table_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.set_table_column"]], "set_table_row() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.set_table_row"]], "sort_table_by_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.sort_table_by_column"]], "table_head() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.table_head"]], "table_tail() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.table_tail"]], "trim_column_names() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.trim_column_names"]], "trim_empty_rows() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.trim_empty_rows"]], "write_table_to_csv() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.write_table_to_csv"]], "robot_library_doc_format (rpa.twitter.twitter attribute)": [[96, "RPA.Twitter.Twitter.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.twitter.twitter attribute)": [[96, "RPA.Twitter.Twitter.ROBOT_LIBRARY_SCOPE"]], "twitter (class in rpa.twitter)": [[96, "RPA.Twitter.Twitter"]], "authorize() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.authorize"]], "follow() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.follow"]], "get_me() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.get_me"]], "get_user_profile() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.get_user_profile"]], "get_user_tweets() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.get_user_tweets"]], "like() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.like"]], "text_search_tweets() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.text_search_tweets"]], "tweet() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.tweet"]], "unfollow() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.unfollow"]], "unlike() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.unlike"]], "robot_library_doc_format (rpa.windows.windows attribute)": [[98, "RPA.Windows.Windows.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.windows.windows attribute)": [[98, "RPA.Windows.Windows.ROBOT_LIBRARY_SCOPE"]], "simulate_move (rpa.windows.windows attribute)": [[98, "RPA.Windows.Windows.SIMULATE_MOVE"]], "windows (class in rpa.windows)": [[98, "RPA.Windows.Windows"]], "add_library_components() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.add_library_components"]], "get_keyword_arguments() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_arguments"]], "get_keyword_documentation() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_documentation"]], "get_keyword_names() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_names"]], "get_keyword_source() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_source"]], "get_keyword_tags() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_tags"]], "get_keyword_types() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_types"]], "run_keyword() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.run_keyword"]], "app_dispatch (rpa.word.application.application attribute)": [[100, "RPA.Word.Application.Application.APP_DISPATCH"]], "application (class in rpa.word.application)": [[100, "RPA.Word.Application.Application"]], "fileformats (rpa.word.application.application attribute)": [[100, "RPA.Word.Application.Application.FILEFORMATS"]], "robot_library_doc_format (rpa.word.application.application attribute)": [[100, "RPA.Word.Application.Application.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.word.application.application attribute)": [[100, "RPA.Word.Application.Application.ROBOT_LIBRARY_SCOPE"]], "app (rpa.word.application.application property)": [[100, "RPA.Word.Application.Application.app"]], "close_document() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.close_document"]], "copy_selection_to_clipboard() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.copy_selection_to_clipboard"]], "create_new_document() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.create_new_document"]], "export_to_pdf() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.export_to_pdf"]], "find_text() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.find_text"]], "get_all_texts() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.get_all_texts"]], "get_current_line() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.get_current_line"]], "get_number_of_lines() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.get_number_of_lines"]], "move_horizontally() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_horizontally"]], "move_to_end() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_to_end"]], "move_to_line_end() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_to_line_end"]], "move_to_line_start() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_to_line_start"]], "move_to_top() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_to_top"]], "move_vertically() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_vertically"]], "open_application() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.open_application"]], "open_file() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.open_file"]], "paste_from_clipboard() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.paste_from_clipboard"]], "quit_application() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.quit_application"]], "replace_text() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.replace_text"]], "save_document() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.save_document"]], "save_document_as() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.save_document_as"]], "select_current_paragraph() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.select_current_paragraph"]], "select_paragraph() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.select_paragraph"]], "set_footer() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.set_footer"]], "set_header() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.set_header"]], "set_object_property() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.set_object_property"]], "write_text() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.write_text"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["contributing/conventions", "contributing/guide", "contributing/todos", "index", "libraries/archive/index", "libraries/archive/python", "libraries/assistant/index", "libraries/assistant/python", "libraries/browser/index", "libraries/browser_playwright/index", "libraries/browser_selenium/index", "libraries/browser_selenium/python", "libraries/calendar/index", "libraries/calendar/python", "libraries/cloud_aws/index", "libraries/cloud_aws/python", "libraries/cloud_azure/index", "libraries/cloud_azure/python", "libraries/cloud_google/index", "libraries/cloud_google/python", "libraries/crypto/index", "libraries/crypto/python", "libraries/database/index", "libraries/database/python", "libraries/desktop/index", "libraries/desktop/python", "libraries/desktop_clipboard/index", "libraries/desktop_clipboard/python", "libraries/desktop_operatingsystem/index", "libraries/desktop_operatingsystem/python", "libraries/desktop_windows/index", "libraries/desktop_windows/python", "libraries/documentai/index", "libraries/documentai/python", "libraries/documentai_base64ai/index", "libraries/documentai_base64ai/python", "libraries/documentai_nanonets/index", "libraries/documentai_nanonets/python", "libraries/email_exchange/index", "libraries/email_exchange/python", "libraries/email_imapsmtp/index", "libraries/email_imapsmtp/python", "libraries/excel_application/index", "libraries/excel_application/python", "libraries/excel_files/index", "libraries/excel_files/python", "libraries/filesystem/index", "libraries/filesystem/python", "libraries/ftp/index", "libraries/ftp/python", "libraries/http/index", "libraries/http/python", "libraries/hubspot/index", "libraries/hubspot/python", "libraries/images/index", "libraries/images/python", "libraries/javaaccessbridge/index", "libraries/javaaccessbridge/python", "libraries/json/index", "libraries/json/python", "libraries/mfa/index", "libraries/mfa/python", "libraries/msgraph/index", "libraries/msgraph/python", "libraries/netsuite/index", "libraries/netsuite/python", "libraries/notifier/index", "libraries/notifier/python", "libraries/openai/index", "libraries/openai/python", "libraries/outlook_application/index", "libraries/outlook_application/python", "libraries/pdf/index", "libraries/pdf/python", "libraries/robocorp_process/index", "libraries/robocorp_process/python", "libraries/robocorp_storage/index", "libraries/robocorp_storage/python", "libraries/robocorp_vault/index", "libraries/robocorp_vault/python", "libraries/robocorp_workitems/index", "libraries/robocorp_workitems/python", "libraries/robotloglistener/index", "libraries/robotloglistener/python", "libraries/salesforce/index", "libraries/salesforce/python", "libraries/sap/index", "libraries/sap/python", "libraries/slack/index", "libraries/slack/python", "libraries/smartsheet/index", "libraries/smartsheet/python", "libraries/tables/index", "libraries/tables/python", "libraries/tasks/index", "libraries/twitter/index", "libraries/twitter/python", "libraries/windows/index", "libraries/windows/python", "libraries/word_application/index", "libraries/word_application/python", "packages", "releasenotes"], "filenames": ["contributing\\conventions.rst", "contributing\\guide.rst", "contributing\\todos.rst", "index.rst", "libraries\\archive\\index.rst", "libraries\\archive\\python.rst", "libraries\\assistant\\index.rst", "libraries\\assistant\\python.rst", "libraries\\browser\\index.rst", "libraries\\browser_playwright\\index.rst", "libraries\\browser_selenium\\index.rst", "libraries\\browser_selenium\\python.rst", "libraries\\calendar\\index.rst", "libraries\\calendar\\python.rst", "libraries\\cloud_aws\\index.rst", "libraries\\cloud_aws\\python.rst", "libraries\\cloud_azure\\index.rst", "libraries\\cloud_azure\\python.rst", "libraries\\cloud_google\\index.rst", "libraries\\cloud_google\\python.rst", "libraries\\crypto\\index.rst", "libraries\\crypto\\python.rst", "libraries\\database\\index.rst", "libraries\\database\\python.rst", "libraries\\desktop\\index.rst", "libraries\\desktop\\python.rst", "libraries\\desktop_clipboard\\index.rst", "libraries\\desktop_clipboard\\python.rst", "libraries\\desktop_operatingsystem\\index.rst", "libraries\\desktop_operatingsystem\\python.rst", "libraries\\desktop_windows\\index.rst", "libraries\\desktop_windows\\python.rst", "libraries\\documentai\\index.rst", "libraries\\documentai\\python.rst", "libraries\\documentai_base64ai\\index.rst", "libraries\\documentai_base64ai\\python.rst", "libraries\\documentai_nanonets\\index.rst", "libraries\\documentai_nanonets\\python.rst", "libraries\\email_exchange\\index.rst", "libraries\\email_exchange\\python.rst", "libraries\\email_imapsmtp\\index.rst", "libraries\\email_imapsmtp\\python.rst", "libraries\\excel_application\\index.rst", "libraries\\excel_application\\python.rst", "libraries\\excel_files\\index.rst", "libraries\\excel_files\\python.rst", "libraries\\filesystem\\index.rst", "libraries\\filesystem\\python.rst", "libraries\\ftp\\index.rst", "libraries\\ftp\\python.rst", "libraries\\http\\index.rst", "libraries\\http\\python.rst", "libraries\\hubspot\\index.rst", "libraries\\hubspot\\python.rst", "libraries\\images\\index.rst", "libraries\\images\\python.rst", "libraries\\javaaccessbridge\\index.rst", "libraries\\javaaccessbridge\\python.rst", "libraries\\json\\index.rst", "libraries\\json\\python.rst", "libraries\\mfa\\index.rst", "libraries\\mfa\\python.rst", "libraries\\msgraph\\index.rst", "libraries\\msgraph\\python.rst", "libraries\\netsuite\\index.rst", "libraries\\netsuite\\python.rst", "libraries\\notifier\\index.rst", "libraries\\notifier\\python.rst", "libraries\\openai\\index.rst", "libraries\\openai\\python.rst", "libraries\\outlook_application\\index.rst", "libraries\\outlook_application\\python.rst", "libraries\\pdf\\index.rst", "libraries\\pdf\\python.rst", "libraries\\robocorp_process\\index.rst", "libraries\\robocorp_process\\python.rst", "libraries\\robocorp_storage\\index.rst", "libraries\\robocorp_storage\\python.rst", "libraries\\robocorp_vault\\index.rst", "libraries\\robocorp_vault\\python.rst", "libraries\\robocorp_workitems\\index.rst", "libraries\\robocorp_workitems\\python.rst", "libraries\\robotloglistener\\index.rst", "libraries\\robotloglistener\\python.rst", "libraries\\salesforce\\index.rst", "libraries\\salesforce\\python.rst", "libraries\\sap\\index.rst", "libraries\\sap\\python.rst", "libraries\\slack\\index.rst", "libraries\\slack\\python.rst", "libraries\\smartsheet\\index.rst", "libraries\\smartsheet\\python.rst", "libraries\\tables\\index.rst", "libraries\\tables\\python.rst", "libraries\\tasks\\index.rst", "libraries\\twitter\\index.rst", "libraries\\twitter\\python.rst", "libraries\\windows\\index.rst", "libraries\\windows\\python.rst", "libraries\\word_application\\index.rst", "libraries\\word_application\\python.rst", "packages.rst", "releasenotes.rst"], "titles": ["Project conventions", "Contribution guide", "TODO", "RPA Framework", "Archive", "Python API", "Assistant", "Python API", "Browser", "Browser.Playwright", "Browser.Selenium", "Python API", "Calendar", "Python API", "Cloud.AWS", "Python API", "Cloud.Azure", "Python API", "Cloud.Google", "Python API", "Crypto", "Python API", "Database", "Python API", "Desktop", "Python API", "Desktop.Clipboard", "Python API", "Desktop.OperatingSystem", "Python API", "Desktop.Windows", "Python API", "DocumentAI", "Python API", "DocumentAI.Base64AI", "Python API", "DocumentAI.Nanonets", "Python API", "Email.Exchange", "Python API", "Email.ImapSmtp", "Python API", "Excel.Application", "Python API", "Excel.Files", "Python API", "FileSystem", "Python API", "FTP", "Python API", "HTTP", "Python API", "HubSpot", "Python API", "Images", "Python API", "JavaAccessBridge", "Python API", "JSON", "Python API", "MFA", "Python API", "MSGraph", "Python API", "Netsuite", "Python API", "Notifier", "Python API", "OpenAI", "Python API", "Outlook.Application", "Python API", "PDF", "Python API", "Robocorp.Process", "Python API", "Robocorp.Storage", "Python API", "Robocorp.Vault", "Python API", "Robocorp.WorkItems", "Python API", "RobotLogListener", "Python API", "Salesforce", "Python API", "SAP", "Python API", "Slack", "Python API", "Smartsheet", "Python API", "Tables", "Python API", "Tasks", "Twitter", "Python API", "Windows", "Python API", "Word.Application", "Python API", "Robo", "Release notes"], "terms": {"thi": [0, 1, 2, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 39, 41, 43, 45, 47, 51, 53, 57, 59, 61, 63, 71, 73, 75, 81, 83, 87, 91, 93, 98, 100, 102], "describ": [0, 1, 3, 11, 13, 15, 17, 25, 35, 53, 57, 81, 85], "common": [0, 3, 13, 17, 20, 21, 45, 53, 57, 59, 63, 91, 93, 98, 102], "all": [0, 2, 3, 5, 7, 11, 15, 17, 19, 21, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 51, 53, 57, 59, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 91, 93, 98, 100], "contain": [0, 1, 3, 5, 7, 11, 13, 15, 19, 25, 31, 35, 37, 39, 41, 45, 47, 51, 53, 57, 59, 61, 65, 67, 69, 71, 75, 77, 79, 81, 87, 91, 93, 98, 102], "rpa": [0, 1, 5, 7, 8, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100], "framework": [0, 1, 7, 11, 13, 15, 17, 19, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 65, 67, 69, 71, 73, 75, 77, 79, 81, 82, 83, 85, 89, 91, 93, 94, 98, 100], "repositori": [0, 3, 15, 57, 102], "librari": [0, 1, 5, 7, 8, 9, 11, 13, 15, 17, 18, 19, 20, 21, 23, 25, 27, 29, 31, 32, 33, 34, 35, 36, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 56, 57, 59, 61, 62, 63, 65, 67, 68, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 97, 98, 100, 102], "which": [0, 3, 5, 7, 11, 13, 15, 17, 19, 25, 29, 31, 35, 37, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 63, 67, 71, 75, 77, 79, 81, 83, 85, 87, 91, 93, 98, 100, 102], "ar": [0, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 31, 33, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 63, 65, 69, 71, 77, 79, 81, 83, 85, 91, 93, 96, 98, 102], "part": [0, 1, 9, 11, 15, 19, 31, 47, 51, 87, 102], "should": [0, 1, 2, 3, 5, 7, 11, 15, 19, 21, 23, 25, 31, 39, 41, 43, 45, 51, 53, 55, 57, 59, 61, 63, 67, 71, 81, 83, 85, 91, 93, 102], "follow": [0, 1, 3, 5, 7, 11, 13, 15, 19, 21, 25, 31, 32, 33, 35, 39, 41, 43, 51, 53, 57, 59, 63, 75, 81, 85, 91, 93, 96, 98, 102], "make": [0, 1, 3, 7, 11, 15, 41, 43, 51, 71, 87, 93, 96, 98, 100, 102], "mainten": [0, 102], "bootstrap": 0, "easier": [0, 53, 93, 102], "share": [0, 11, 19, 21, 63, 71, 98, 102], "i": [0, 1, 2, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "prefix": [0, 11, 15, 25, 39, 41, 102], "rpaframework": [0, 1, 3, 7, 9, 15, 19, 23, 25, 33, 35, 37, 39, 55, 57, 61, 69, 98], "exampl": [0, 1, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "secret": [0, 3, 11, 15, 17, 19, 21, 23, 33, 35, 37, 39, 41, 53, 61, 63, 65, 69, 75, 78, 83, 85, 96, 102], "manag": [0, 3, 15, 25, 27, 29, 31, 51, 73, 76, 81, 85, 102], "us": [0, 1, 2, 3, 5, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 21, 23, 25, 27, 31, 32, 33, 34, 35, 36, 39, 41, 43, 45, 47, 49, 51, 55, 57, 59, 61, 63, 65, 66, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "both": [0, 3, 25, 33, 35, 45, 51, 53, 61, 91, 93, 96, 102], "git": [0, 3], "pypi": [0, 3, 19, 102], "packag": [0, 5, 7, 9, 13, 15, 19, 51, 55, 57, 61, 62, 63, 68, 69, 98], "releas": [0, 3, 31, 81, 98], "under": [0, 3, 11, 43, 61, 71, 81, 98, 100, 102], "python": [0, 1, 3, 9, 102], "namespac": 0, "current": [0, 3, 5, 7, 11, 13, 15, 19, 25, 31, 33, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 63, 71, 73, 81, 85, 91, 93, 98, 100, 102], "sourc": [0, 3, 7, 11, 15, 17, 19, 21, 25, 31, 39, 41, 43, 45, 47, 49, 55, 69, 71, 77, 79, 81, 93, 102], "e": [0, 3, 7, 11, 13, 25, 31, 33, 35, 38, 40, 41, 43, 45, 47, 51, 53, 55, 57, 63, 67, 69, 77, 79, 81, 87, 91, 93, 98, 102], "host": [0, 23, 43, 49, 51, 67, 71, 100, 102], "github": [0, 1, 3, 7, 9, 11, 15, 19, 35, 73, 87, 102], "These": [0, 11, 15, 39, 43, 53, 59, 81, 85, 91], "public": [0, 15, 102], "inspect": [0, 15, 31, 47, 57, 93, 98, 102], "fork": [0, 102], "user": [0, 3, 6, 7, 11, 15, 19, 23, 25, 29, 31, 35, 39, 41, 47, 49, 51, 53, 59, 61, 63, 67, 81, 87, 91, 93, 96, 98, 102], "thei": [0, 3, 5, 7, 11, 21, 25, 35, 41, 47, 51, 53, 55, 57, 63, 69, 91, 93, 98, 102], "robocorp": [0, 3, 7, 11, 15, 17, 19, 21, 23, 31, 33, 35, 37, 39, 41, 43, 53, 61, 63, 69, 71, 73, 75, 77, 79, 81, 83, 85, 93, 98, 100, 102], "": [0, 1, 5, 7, 11, 15, 19, 25, 27, 29, 31, 33, 39, 41, 43, 45, 49, 51, 53, 55, 57, 59, 61, 63, 64, 69, 71, 75, 81, 87, 91, 93, 96, 98, 100, 102], "organ": 0, "The": [0, 1, 2, 3, 7, 9, 11, 15, 17, 19, 21, 23, 25, 31, 33, 35, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 85, 87, 91, 93, 96, 98, 100, 102], "primari": [0, 7, 23, 53, 91], "index": [0, 3, 11, 19, 35, 43, 45, 53, 57, 59, 61, 87, 91, 93, 98, 102], "reserv": [0, 7, 81, 98], "accord": [0, 3, 7, 41, 45, 47, 71, 93], "polici": [0, 15], "also": [0, 1, 3, 7, 11, 15, 19, 25, 31, 39, 41, 45, 47, 51, 53, 57, 59, 71, 73, 81, 83, 85, 91, 93, 98, 102], "includ": [0, 3, 5, 7, 11, 15, 19, 23, 25, 35, 39, 41, 45, 47, 53, 57, 59, 63, 67, 69, 71, 75, 81, 87, 91, 93, 96, 98, 102], "correct": [0, 3, 7, 13, 45, 57, 81, 102], "trove": 0, "classifi": [0, 19], "find": [0, 2, 7, 11, 19, 25, 31, 43, 45, 47, 55, 57, 59, 73, 87, 93, 98, 100, 102], "them": [0, 7, 11, 15, 25, 31, 33, 41, 43, 47, 51, 53, 91, 93, 96, 102], "have": [0, 3, 7, 11, 15, 19, 23, 25, 35, 39, 41, 43, 45, 49, 51, 53, 57, 59, 63, 69, 73, 81, 83, 85, 87, 91, 93, 98, 102], "technic": 0, "api": [0, 2, 3, 50, 62, 68, 74, 95, 102], "simpl": [0, 11, 45, 53, 85, 102], "usag": [0, 11, 19, 21, 25, 35, 37, 39, 47, 53, 59, 61, 69, 87, 96, 98, 102], "instruct": [0, 102], "page": [0, 3, 7, 11, 15, 19, 25, 31, 37, 53, 65, 73, 83, 87, 98, 102], "handl": [0, 2, 7, 11, 13, 15, 23, 31, 43, 57, 81, 85, 93, 98, 102], "store": [0, 5, 11, 15, 19, 21, 23, 25, 31, 33, 41, 45, 51, 61, 63, 65, 73, 76, 77, 79, 81, 85, 93, 102], "gener": [0, 3, 7, 11, 15, 19, 21, 25, 32, 33, 39, 41, 45, 53, 55, 59, 61, 63, 67, 69, 81, 102], "sphinx": 0, "robot": [0, 1, 3, 5, 7, 11, 13, 15, 17, 19, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 62, 63, 65, 67, 68, 69, 71, 73, 75, 77, 79, 81, 82, 83, 85, 87, 91, 93, 94, 98, 100, 102], "autogener": 0, "from": [0, 1, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 27, 29, 31, 32, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "file": [0, 3, 4, 5, 7, 11, 15, 19, 21, 23, 31, 33, 35, 37, 39, 41, 43, 46, 47, 49, 51, 57, 59, 63, 65, 69, 71, 73, 75, 77, 79, 81, 83, 85, 91, 93, 100, 102], "docstr": [0, 102], "restructuredtext": 0, "In": [0, 3, 9, 11, 13, 15, 21, 23, 29, 31, 39, 41, 51, 53, 59, 61, 63, 75, 81, 83, 85, 87, 91, 98, 102], "depth": [0, 57, 98, 102], "guid": [0, 3, 7, 11, 15, 41, 59, 81, 85, 102], "separ": [0, 3, 11, 15, 19, 25, 37, 41, 43, 47, 59, 61, 75, 81, 91, 98, 102], "portal": [0, 7, 33, 35, 39, 41, 73, 81, 91, 98, 102], "creat": [0, 1, 2, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 33, 37, 39, 41, 43, 45, 47, 49, 51, 53, 59, 61, 63, 65, 67, 69, 71, 72, 75, 81, 83, 85, 87, 91, 93, 96, 100, 102], "respons": [0, 7, 15, 17, 19, 35, 39, 41, 51, 53, 61, 69, 75, 96, 102], "develop": [0, 1, 11, 15, 17, 31, 41, 53, 61, 71, 77, 79, 81, 85, 91, 96, 102], "automat": [0, 7, 11, 23, 33, 39, 41, 43, 45, 51, 53, 71, 77, 79, 81, 87, 93, 100, 102], "black": [0, 3], "tool": [0, 3, 11, 17, 57, 98, 102], "For": [0, 3, 7, 11, 12, 15, 19, 23, 25, 31, 35, 37, 39, 41, 51, 53, 55, 59, 63, 69, 71, 73, 74, 81, 83, 88, 91, 93, 98, 102], "strictli": 0, "flake8": [0, 3], "On": [0, 11, 51, 83, 98, 102], "top": [0, 7, 17, 19, 25, 31, 35, 41, 45, 55, 57, 98, 100, 102], "we": [0, 2, 25, 33, 51, 57, 61, 81, 102], "pylint": 0, "even": [0, 11, 19, 25, 39, 51, 83], "isort": 0, "mypi": [0, 2], "valid": [0, 2, 7, 13, 31, 35, 41, 45, 53, 59, 69, 91, 93, 102], "pull": [0, 1, 3, 102], "request": [0, 3, 6, 7, 11, 15, 19, 35, 37, 51, 53, 61, 63, 75, 85, 91, 96, 98, 102], "probabl": [0, 53, 69, 98], "offer": [0, 3, 7, 11, 33, 87, 102], "pre": [0, 7, 33], "commit": [0, 3, 23, 102], "hook": [0, 11, 67], "check": [0, 7, 11, 13, 15, 19, 29, 31, 33, 35, 39, 41, 43, 45, 47, 51, 57, 63, 71, 73, 83, 87, 98, 100, 102], "reason": [0, 51, 57, 81, 102], "why": [0, 41], "auto": [0, 7, 11, 19, 23, 45, 102], "good": [0, 1, 3, 11], "idea": [0, 11], "similar": [0, 11, 15, 25, 35, 53, 59, 61, 102], "javascript": [0, 11, 59], "prettier": 0, "decent": 0, "coverag": 0, "through": [0, 1, 11, 15, 25, 35, 39, 41, 43, 51, 53, 59, 61, 67, 71, 81, 93, 98, 100, 102], "unittest": [0, 3], "main": [0, 3, 7, 11, 25, 33, 61, 93, 98, 102], "pytest": [0, 3], "track": [0, 1, 19, 98], "can": [0, 1, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 67, 69, 71, 73, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "done": [0, 3, 11, 25, 39, 41, 51, 55, 59, 63, 81, 83, 93, 102], "via": [0, 1, 11, 15, 23, 35, 37, 53, 57, 63, 67, 69, 81, 85, 91, 98, 102], "plug": 0, "each": [0, 3, 5, 7, 11, 15, 33, 35, 41, 45, 51, 53, 57, 59, 75, 81, 87, 91, 93, 102], "task": [0, 3, 5, 7, 11, 15, 17, 19, 21, 23, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 82, 83, 85, 93, 96, 98, 100, 102], "provid": [0, 2, 3, 7, 11, 15, 32, 35, 39, 41, 45, 51, 53, 57, 59, 61, 63, 67, 69, 75, 81, 85, 87, 91, 98, 102], "keyword": [0, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "act": [0, 7, 11, 81, 102], "runnabl": 0, "accept": [0, 3, 7, 11, 15, 35, 45, 51, 53, 57, 61, 93, 98, 102], "addit": [0, 11, 13, 15, 23, 25, 41, 51, 53, 63, 81, 85, 91, 93, 102], "function": [0, 7, 11, 19, 25, 27, 31, 45, 51, 63, 81, 87, 91, 102], "best": [0, 11, 41, 53, 63], "option": [0, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "action": [0, 3, 7, 11, 19, 23, 25, 29, 41, 57, 87, 98, 102], "step": [0, 1, 3, 7, 9, 19, 33, 41, 43, 53, 57, 59, 71, 75, 81, 100, 102], "least": [0, 1, 2, 7, 39, 91, 102], "ci": [0, 3], "pipelin": 0, "matrix": 0, "platform": [0, 2, 3, 11, 19, 24, 25, 29, 102], "window": [0, 3, 7, 11, 25, 43, 57, 71, 87, 100, 102], "linux": [0, 11, 47, 102], "maco": [0, 102], "3": [0, 3, 9, 11, 13, 15, 19, 31, 45, 51, 57, 69, 83, 87, 93, 98], "8": [0, 3, 13, 15, 21, 23, 31, 35, 41, 47, 51, 59, 87, 93, 98], "9": [0, 3, 7, 9, 39, 87, 93, 98], "10": [0, 3, 13, 31, 39, 41, 43, 45, 47, 57, 65, 69, 71, 75, 87, 93, 98, 100], "keep": [0, 7, 11, 33, 57, 73, 93, 98, 102], "remov": [0, 2, 11, 19, 31, 41, 43, 45, 47, 49, 51, 59, 81, 87, 91, 93, 102], "bug": [0, 3, 45, 102], "fix": [0, 1, 23, 25, 41, 98, 102], "etc": [0, 11, 33, 39, 45, 51, 91, 102], "affect": [0, 2, 15, 43, 45, 83, 98, 102], "entri": [0, 15, 25, 85], "meant": [0, 102], "human": [0, 2, 7, 25, 29, 31, 53, 81, 87, 102], "readabl": [0, 87], "an": [0, 1, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 31, 33, 35, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 69, 71, 73, 75, 77, 79, 81, 85, 87, 91, 93, 96, 98, 100, 102], "method": [0, 2, 3, 5, 11, 15, 17, 21, 31, 43, 51, 57, 61, 63, 71, 83, 85, 91, 98, 102], "process": [0, 3, 7, 11, 19, 28, 29, 31, 32, 33, 34, 35, 36, 37, 39, 43, 45, 47, 57, 59, 71, 81, 87, 93, 98, 100, 102], "entir": [0, 15, 39, 57, 63, 81, 87, 102], "manual": [0, 7, 11, 43, 57, 71, 77, 79, 81, 93, 100, 102], "reli": [0, 11, 33, 77, 79], "towncrier": 0, "semant": [0, 3], "when": [0, 1, 2, 7, 11, 13, 15, 19, 23, 25, 31, 33, 39, 41, 45, 51, 57, 59, 61, 63, 69, 71, 77, 79, 81, 83, 85, 87, 91, 93, 98, 102], "gist": 0, "given": [0, 7, 11, 13, 15, 17, 19, 21, 23, 25, 31, 35, 37, 39, 41, 43, 45, 47, 51, 53, 55, 57, 59, 61, 65, 71, 73, 75, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "number": [0, 3, 7, 11, 13, 15, 19, 23, 39, 41, 43, 45, 51, 53, 59, 65, 67, 69, 73, 75, 85, 87, 91, 93, 96, 98, 100, 102], "major": [0, 19, 102], "minor": [0, 102], "patch": [0, 9, 51, 102], "increment": [0, 53], "you": [0, 1, 3, 7, 9, 11, 15, 19, 23, 25, 33, 35, 39, 41, 43, 45, 51, 53, 57, 59, 61, 63, 69, 71, 73, 77, 79, 81, 85, 87, 91, 96, 98, 100, 102], "incompat": [0, 11, 102], "add": [0, 2, 5, 7, 9, 11, 13, 19, 21, 31, 41, 43, 51, 53, 59, 61, 69, 73, 81, 85, 91, 93, 98, 102], "backward": [0, 81, 93, 102], "compat": [0, 23, 37, 41, 57, 81, 98, 102], "manner": 0, "support": [0, 2, 5, 7, 11, 17, 19, 23, 25, 31, 32, 33, 35, 37, 39, 41, 43, 45, 49, 53, 57, 60, 61, 67, 69, 73, 91, 93, 98, 102], "sinc": [0, 39, 45, 81, 98, 102], "6": [0, 3, 11, 13, 43, 45, 69, 87, 93, 98], "improv": [0, 1, 51, 102], "maintain": [0, 3, 7, 57, 63, 98], "after": [0, 3, 7, 11, 15, 31, 39, 41, 43, 45, 47, 51, 57, 59, 61, 63, 71, 81, 87, 93, 100, 102], "reach": [0, 47, 51, 98, 102], "certain": [0, 5, 7, 11, 35, 55, 59, 81, 98], "size": [0, 3, 5, 7, 11, 15, 19, 25, 45, 47, 49, 69, 71, 93, 102], "convert": [0, 2, 15, 19, 23, 25, 41, 45, 51, 53, 59, 81, 91, 93, 98, 102], "input": [0, 3, 6, 7, 11, 13, 15, 19, 21, 25, 31, 35, 41, 43, 47, 57, 59, 73, 75, 81, 85, 87, 93, 98, 102], "argument": [0, 5, 7, 11, 15, 21, 23, 25, 33, 41, 43, 45, 47, 51, 53, 59, 61, 67, 69, 73, 75, 81, 83, 85, 91, 93, 98, 102], "strive": 0, "older": [0, 11, 43, 102], "than": [0, 7, 11, 13, 19, 23, 39, 47, 51, 53, 55, 57, 59, 69, 75, 93, 96, 102], "aim": 0, "newer": [0, 3, 8, 9, 11, 102], "requir": [0, 3, 7, 9, 11, 15, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 51, 55, 57, 59, 61, 63, 71, 81, 87, 96, 100, 102], "featur": [0, 1, 3, 7, 11, 17, 19, 21, 25, 35, 53, 57, 59, 81, 102], "backport": 0, "There": [1, 7, 11, 31, 39, 45, 57, 59, 63, 67, 73, 85, 91, 98, 102], "sever": [1, 31, 51, 57, 63, 85, 91, 102], "wai": [1, 2, 3, 7, 11, 15, 17, 19, 25, 31, 39, 43, 47, 59, 63, 67, 85, 91, 93, 98, 102], "section": [1, 11, 17, 53, 81, 98, 102], "variou": [1, 11, 25, 41, 53, 57, 93, 102], "project": [1, 9, 11, 19, 33], "primarili": [1, 63, 102], "issu": [1, 3, 9, 11, 43, 45, 51, 57, 71, 98, 100, 102], "tracker": [1, 9, 87], "try": [1, 7, 11, 25, 45, 53, 81, 83, 91, 98, 102], "explain": [1, 11, 102], "clearli": 1, "what": [1, 2, 7, 11, 43, 53, 65, 69, 102], "expect": [1, 11, 13, 15, 17, 23, 33, 39, 43, 51, 57, 87, 93, 98, 102], "outcom": 1, "wa": [1, 7, 11, 17, 23, 31, 39, 41, 47, 51, 53, 55, 57, 59, 61, 63, 67, 71, 83, 85, 96, 102], "possibli": [1, 57], "reproduc": 1, "attach": [1, 11, 19, 39, 41, 53, 67, 71, 81, 91, 102], "code": [1, 3, 11, 13, 15, 19, 31, 39, 41, 45, 49, 51, 53, 61, 63, 77, 79, 81, 96, 98, 102], "veri": [1, 11, 33, 81], "help": [1, 17, 63, 69, 98, 102], "inform": [1, 2, 3, 5, 6, 7, 11, 13, 15, 17, 19, 23, 25, 28, 29, 31, 39, 41, 51, 57, 65, 67, 71, 73, 75, 85, 91, 93, 98, 102], "version": [1, 3, 7, 9, 11, 15, 19, 33, 35, 37, 41, 51, 53, 57, 61, 69, 71], "interpret": [1, 81, 91], "oper": [1, 3, 5, 7, 11, 13, 15, 17, 19, 20, 21, 23, 25, 31, 38, 39, 40, 41, 43, 53, 55, 59, 65, 71, 81, 84, 85, 89, 91, 93, 96, 98, 100, 102], "system": [1, 3, 7, 11, 15, 26, 29, 31, 43, 53, 69, 71, 93, 98, 100, 102], "error": [1, 2, 3, 7, 11, 15, 19, 31, 41, 43, 45, 47, 49, 51, 53, 57, 71, 75, 81, 83, 85, 87, 102], "messag": [1, 2, 3, 7, 11, 15, 19, 31, 39, 41, 49, 51, 53, 66, 67, 69, 71, 81, 87, 88, 89, 102], "traceback": [1, 102], "applic": [1, 3, 7, 11, 15, 19, 25, 30, 31, 39, 41, 45, 56, 57, 63, 81, 87, 91, 98, 102], "If": [1, 7, 11, 13, 15, 19, 21, 23, 25, 29, 31, 33, 39, 41, 43, 45, 47, 51, 53, 57, 59, 63, 71, 81, 83, 85, 87, 91, 93, 98, 100, 102], "possibl": [1, 3, 7, 9, 11, 15, 19, 31, 37, 39, 41, 43, 45, 51, 57, 63, 67, 71, 81, 83, 87, 93, 100, 102], "suppli": [1, 81, 91], "minim": [1, 31], "replic": 1, "problem": [1, 11, 39, 81, 102], "down": [1, 7, 11, 25, 31, 45, 57, 87, 98, 100], "think": 1, "someth": [1, 39, 55], "miss": [1, 3, 5, 47, 102], "well": [1, 3, 11, 53, 63, 77, 79, 81, 98, 102], "anyth": [1, 7, 11, 51, 57, 81], "new": [1, 3, 7, 9, 11, 19, 25, 31, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 69, 71, 77, 79, 81, 85, 87, 91, 93, 100, 102], "document": [1, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 24, 26, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45, 46, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 76, 78, 80, 81, 82, 84, 86, 88, 90, 92, 93, 94, 95, 97, 98, 99, 100, 102], "A": [1, 7, 11, 13, 15, 19, 21, 25, 35, 39, 41, 45, 51, 53, 61, 62, 63, 68, 69, 73, 75, 81, 87, 91, 93, 98], "propos": 1, "solv": 1, "case": [1, 7, 11, 21, 25, 41, 43, 45, 51, 53, 59, 81, 87, 91, 93, 98, 102], "demo": [1, 73, 98], "how": [1, 7, 11, 15, 17, 19, 25, 29, 31, 33, 35, 39, 41, 45, 51, 57, 59, 69, 71, 81, 85, 93, 98, 102], "would": [1, 11, 23, 53, 55, 57, 81, 83, 93, 96, 98, 102], "re": [1, 7, 9, 11, 15, 23, 31, 33, 35, 41, 43, 71, 93, 100, 102], "unsur": 1, "worth": 1, "implement": [1, 2, 7, 43, 81, 83, 102], "first": [1, 3, 7, 11, 13, 19, 25, 33, 41, 43, 45, 53, 59, 71, 73, 81, 87, 91, 93, 96, 98, 100, 102], "ask": [1, 7, 11, 91, 102], "channel": [1, 3, 9, 15, 19, 67, 89, 98], "slack": [1, 3, 67, 102], "instead": [1, 2, 3, 7, 11, 15, 19, 23, 25, 27, 31, 35, 39, 51, 53, 57, 61, 69, 87, 93, 102], "directli": [1, 3, 11, 15, 33, 44, 45, 50, 53, 55, 57, 77, 79, 81, 93, 98], "direct": [1, 4, 6, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 43, 44, 46, 48, 50, 52, 54, 56, 58, 59, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 95, 97, 98, 99, 102], "extern": [1, 3, 7, 15, 45, 47, 73, 102], "welcom": [1, 49], "ani": [1, 2, 3, 7, 11, 15, 19, 23, 25, 29, 31, 32, 33, 35, 39, 41, 43, 45, 47, 51, 53, 57, 59, 61, 63, 65, 67, 71, 75, 81, 83, 85, 91, 93, 98, 100, 102], "typo": [1, 102], "howev": [1, 53], "befor": [1, 3, 7, 11, 19, 21, 25, 31, 33, 39, 43, 45, 49, 51, 53, 57, 59, 71, 75, 81, 83, 87, 96, 98, 100, 102], "larg": [1, 7, 23, 47, 51, 102], "advis": [1, 23, 87], "discuss": [1, 11, 91, 102], "beforehand": 1, "correspond": [1, 7, 11, 15, 33, 53, 55, 81, 85], "gh": 1, "write": [1, 3, 7, 15, 25, 43, 45, 47, 57, 59, 69, 81, 93, 100, 102], "pleas": [1, 3, 7, 8, 11, 15, 19, 23, 31, 33, 39, 41, 43, 45, 51, 57, 71, 100, 102], "read": [1, 3, 11, 15, 19, 21, 25, 28, 39, 41, 43, 45, 46, 47, 51, 53, 57, 59, 61, 67, 71, 72, 73, 77, 79, 81, 85, 93, 96, 102], "acknowledg": [1, 3], "our": [1, 3, 57, 63, 98, 102], "extens": [1, 3, 5, 7, 43, 45, 47, 51, 63, 77, 79, 81, 102], "dev": [1, 3, 7, 23, 102], "line": [2, 11, 15, 21, 53, 55, 73, 93, 98, 100, 102], "258": 2, "take": [2, 7, 11, 25, 31, 41, 55, 69, 85, 87, 93, 102], "autocommit": [2, 23, 102], "modul": [2, 3, 11, 17, 23, 31, 55, 102], "651": 2, "too": [2, 11, 25, 102], "compl": 2, "1137": 2, "return": [2, 5, 7, 11, 13, 15, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 55, 57, 59, 61, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "more": [2, 3, 7, 11, 13, 15, 19, 21, 23, 25, 31, 39, 41, 43, 47, 51, 53, 55, 57, 59, 65, 67, 69, 71, 73, 81, 85, 91, 93, 98, 100, 102], "valuabl": 2, "about": [2, 3, 5, 7, 11, 15, 23, 31, 39, 41, 51, 53, 57, 67, 71, 75, 83, 87, 91, 93, 98, 102], "1390": 2, "multipl": [2, 3, 7, 11, 15, 19, 21, 23, 33, 35, 37, 43, 47, 51, 53, 57, 59, 63, 73, 75, 81, 93, 102], "search": [2, 3, 11, 15, 19, 29, 31, 35, 39, 41, 43, 47, 55, 57, 63, 65, 91, 93, 96, 98, 102], "criteria": [2, 19, 31, 41, 53, 71, 93, 102], "same": [2, 7, 11, 15, 19, 21, 25, 33, 39, 43, 45, 49, 51, 53, 59, 61, 67, 75, 81, 87, 93, 98, 102], "time": [2, 3, 5, 7, 11, 12, 13, 15, 19, 29, 31, 39, 41, 45, 47, 51, 60, 61, 71, 81, 83, 85, 87, 91, 96, 98, 102], "identifi": [2, 11, 15, 17, 19, 25, 29, 31, 35, 37, 51, 53, 57, 81, 85, 87, 91, 93, 98, 102], "ONE": 2, "element": [2, 7, 11, 15, 25, 31, 55, 57, 59, 83, 87, 98, 102], "1416": 2, "114": [2, 102], "move": [2, 19, 25, 31, 39, 41, 45, 47, 71, 100, 102], "specif": [2, 3, 7, 11, 13, 15, 17, 21, 23, 25, 33, 35, 39, 41, 57, 59, 67, 71, 75, 77, 79, 83, 98, 102], "adapt": [2, 77, 79, 81, 102], "170": [2, 102], "out": [2, 11, 15, 47, 81, 91, 102], "get": [2, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 69, 71, 73, 75, 77, 79, 81, 85, 87, 93, 96, 98, 100, 102], "actual": [2, 43, 45], "default": [2, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 29, 31, 33, 35, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "307": 2, "run": [2, 3, 7, 11, 15, 19, 23, 29, 31, 33, 39, 43, 45, 47, 71, 75, 77, 79, 81, 83, 87, 93, 98, 100, 102], "mayb": 2, "screenshot": [2, 11, 25, 31, 45, 55, 83, 87, 102], "match": [2, 7, 11, 15, 17, 19, 21, 25, 29, 31, 35, 39, 41, 43, 45, 47, 55, 57, 59, 63, 71, 73, 75, 81, 83, 87, 91, 93, 96, 102], "73": [2, 87], "clamp": 2, "dimens": [2, 7, 17, 19, 93, 102], "106": 2, "enum": [2, 19, 102], "exhaust": 2, "177": 2, "draw": [2, 31, 55], "circl": 2, "546": 2, "exchangelib": [2, 102], "doe": [2, 11, 15, 19, 29, 31, 41, 43, 45, 47, 51, 53, 57, 75, 81, 87, 93, 98, 102], "seem": [2, 43, 102], "straightforward": 2, "958": 2, "2258": 2, "target": [2, 3, 11, 19, 25, 31, 35, 39, 41, 43, 45, 51, 57, 59, 63, 65, 67, 71, 75, 81, 98, 102], "worksheet": [2, 19, 43, 45, 65, 93, 102], "cell": [2, 11, 15, 19, 37, 43, 45, 57, 87, 91, 93, 102], "format": [2, 3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 29, 31, 33, 35, 37, 41, 43, 45, 47, 51, 59, 69, 81, 85, 87, 91, 93, 100, 102], "overwritten": [2, 19], "574": 2, "glob": [2, 7, 47], "612": 2, "subdirectori": [2, 5, 7, 41, 47], "652": 2, "873": 2, "proper": [2, 15, 63, 102], "date": [2, 3, 7, 12, 13, 19, 41, 45, 55, 85, 91, 96, 102], "883": [2, 102], "892": 2, "friendli": [2, 7, 81, 102], "229": 2, "log": [2, 3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 65, 69, 73, 77, 79, 81, 82, 83, 87, 91, 93, 98, 102], "row": [2, 7, 11, 15, 19, 23, 37, 43, 45, 57, 65, 87, 91, 93, 98, 102], "debug": [2, 11, 49, 51, 87, 91, 102], "level": [2, 3, 19, 47, 49, 57, 77, 79, 81, 83, 98, 102], "436": 2, "437": 2, "xpath": [2, 11, 59], "syntax": [2, 11, 25, 41, 43, 71, 98, 100, 102], "122": 2, "tokenbackend": 2, "vault": [2, 3, 7, 15, 17, 19, 21, 23, 33, 35, 37, 39, 41, 53, 61, 63, 69, 75, 77, 79, 83, 85, 102], "297": 2, "fail": [2, 3, 7, 11, 23, 47, 49, 51, 53, 57, 75, 81, 83, 91, 102], "defin": [2, 3, 5, 7, 11, 19, 25, 29, 31, 45, 51, 53, 57, 59, 63, 75, 77, 79, 81, 83, 85, 89, 91, 93, 96, 98, 102], "path": [2, 3, 5, 7, 11, 15, 19, 21, 25, 31, 33, 35, 37, 39, 41, 43, 45, 46, 47, 49, 51, 55, 57, 59, 63, 71, 73, 75, 77, 79, 81, 85, 91, 93, 98, 100, 102], "want": [2, 3, 7, 11, 15, 19, 23, 33, 39, 41, 51, 53, 81, 87, 102], "209": 2, "endpoint": [2, 15, 17, 19, 35, 51, 61, 69, 75, 85], "118": 2, "throughout": [2, 102], "218": 2, "consid": [2, 11, 13, 35, 45, 51, 59, 69, 87, 91], "properli": [2, 53, 102], "connect": [2, 11, 15, 23, 31, 39, 41, 43, 49, 51, 63, 65, 71, 85, 87, 100, 102], "676": 2, "result": [2, 3, 7, 13, 15, 17, 19, 21, 23, 31, 33, 35, 37, 39, 41, 43, 47, 51, 53, 55, 59, 63, 65, 69, 71, 73, 75, 81, 85, 91, 93, 96, 98, 100, 102], "object": [2, 3, 7, 11, 13, 15, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 51, 52, 55, 57, 58, 59, 63, 65, 71, 77, 79, 81, 85, 87, 93, 98, 100, 102], "modifi": [2, 5, 11, 15, 25, 41, 47, 51, 53, 77, 78, 79, 81, 91, 93], "here": [2, 7, 35, 39, 45, 51, 59, 91, 98], "41": [2, 87, 102], "cmin764": 2, "16": [2, 7, 9, 13, 45, 61, 73, 87, 98], "aug": 2, "2023": [2, 13, 69], "handles_com_error": 2, "decor": 2, "littl": 2, "collect": [3, 15, 53, 59, 77, 79, 81, 102], "open": [3, 7, 11, 17, 25, 31, 39, 41, 43, 45, 47, 51, 61, 63, 68, 71, 73, 81, 83, 87, 100, 102], "autom": [3, 7, 9, 10, 11, 24, 25, 30, 31, 55, 56, 57, 87, 91, 97, 98, 102], "design": [3, 11, 59, 87, 102], "goal": 3, "activ": [3, 11, 31, 33, 43, 45, 53, 57, 63, 71, 73, 81, 91, 98, 100, 102], "core": [3, 7, 102], "softwar": [3, 41], "learn": [3, 39, 53, 91, 98], "100": [3, 7, 25, 31, 39, 59, 65, 96, 98], "sponsor": 3, "optim": [3, 102], "control": [3, 7, 10, 11, 19, 25, 31, 41, 42, 43, 45, 51, 57, 63, 69, 70, 71, 75, 76, 77, 79, 80, 81, 82, 83, 86, 94, 98, 99, 100, 102], "room": [3, 17, 43, 63, 71, 75, 76, 77, 79, 80, 81, 100, 102], "homepag": 3, "http": [3, 7, 11, 13, 19, 23, 33, 35, 41, 43, 47, 49, 53, 61, 63, 67, 69, 71, 73, 75, 81, 83, 87, 98, 100, 102], "www": [3, 11, 23, 47, 51, 83, 98], "com": [3, 7, 11, 19, 23, 33, 35, 39, 41, 43, 47, 51, 53, 59, 61, 63, 67, 69, 71, 73, 81, 83, 93, 98, 100, 102], "org": [3, 11, 23, 49, 51, 67, 102], "note": [3, 11, 15, 19, 21, 23, 25, 31, 39, 41, 43, 45, 47, 51, 53, 57, 61, 69, 71, 75, 77, 79, 81, 87, 91], "releasenot": 3, "html": [3, 11, 19, 39, 41, 47, 51, 71, 81, 87, 100, 102], "rss": 3, "feed": 3, "xml": [3, 47, 59, 102], "abov": [3, 11, 15, 43, 51, 59, 67, 75, 98, 102], "recognit": [3, 19, 25, 55, 102], "alon": [3, 57], "do": [3, 7, 11, 19, 31, 41, 51, 53, 81, 83, 91, 93, 98, 102], "x": [3, 7, 17, 23, 25, 31, 55, 57, 87, 98, 102], "column": [3, 7, 11, 15, 19, 23, 43, 45, 57, 87, 91, 93, 102], "mean": [3, 5, 7, 9, 11, 13, 15, 19, 23, 29, 31, 39, 69, 98, 102], "pdf": [3, 7, 11, 15, 19, 33, 35, 37, 39, 41, 43, 71, 100, 102], "name": [3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "descript": [3, 7, 11, 15, 23, 25, 53, 57, 59, 69, 85, 91, 93, 102], "archiv": [3, 47, 53, 57, 102], "tar": [3, 4, 5, 102], "zip": [3, 4, 5, 53, 102], "assist": [3, 35, 53, 57, 69, 77, 79, 102], "displai": [3, 6, 7, 11, 19, 31, 43, 45, 57, 63, 71, 91, 98, 100, 102], "selenium": [3, 8, 83, 102], "web": [3, 10, 11, 15, 39, 50, 55, 59, 63, 65, 102], "special": [3, 7, 11, 15, 19, 25, 31, 39, 73, 98], "below": [3, 11, 15, 25, 43, 53, 61, 63, 67, 71, 83, 85, 93, 98, 100, 102], "calendar": [3, 39, 63, 102], "manipul": [3, 12, 15, 28, 43, 44, 45, 46, 54, 55, 58, 59, 92, 93, 102], "cloud": [3, 11, 15, 17, 19, 33, 81, 102], "aw": [3, 102], "amazon": [3, 14, 15, 102], "servic": [3, 11, 14, 15, 16, 17, 18, 19, 32, 33, 34, 35, 36, 37, 39, 43, 61, 64, 65, 66, 67, 69, 71, 73, 100, 102], "azur": [3, 23, 63, 69, 102], "microsoft": [3, 16, 17, 31, 39, 43, 45, 62, 63, 68, 71, 81, 98, 102], "googl": [3, 11, 32, 33, 41, 51, 53, 57, 61], "crypto": [3, 102], "hash": [3, 20, 21, 102], "encrypt": [3, 20, 21, 73, 102], "databas": [3, 15, 25, 53, 77, 79, 85, 102], "interact": [3, 7, 11, 22, 25, 26, 31, 47, 48, 49, 50, 57, 75, 77, 79, 80, 81, 98, 102], "desktop": [3, 11, 27, 29, 31, 42, 43, 55, 57, 70, 71, 86, 97, 98, 99, 100, 102], "cross": [3, 7, 15, 24, 25, 29, 102], "clipboard": [3, 25, 100, 102], "operatingsystem": [3, 41, 47, 102], "o": [3, 28, 57, 61, 71, 75, 87, 102], "documentai": [3, 19, 35, 37, 73, 102], "intellig": [3, 19, 32, 34, 35, 36, 37, 102], "wrapper": [3, 33, 57, 102], "base64ai": [3, 33, 102], "nanonet": [3, 32, 33, 102], "email": [3, 7, 19, 25, 35, 39, 41, 53, 59, 65, 67, 71, 81, 91, 93, 102], "exchang": [3, 41, 61, 63, 102], "mail": [3, 7, 33, 38, 39, 40, 41, 59, 61, 81, 93, 98, 102], "protocol": [3, 11, 38, 41, 51, 102], "imapsmtp": [3, 102], "imap": [3, 40, 41, 102], "smtp": [3, 40, 41, 67, 102], "excel": [3, 7, 31, 51, 65, 71, 93, 102], "filesystem": [3, 15, 49, 102], "ftp": [3, 102], "server": [3, 23, 39, 41, 43, 48, 49, 51, 71, 89, 91, 100, 102], "hubspot": [3, 102], "access": [3, 11, 15, 19, 21, 23, 31, 33, 39, 41, 47, 49, 52, 57, 59, 61, 62, 63, 64, 65, 68, 75, 78, 81, 85, 90, 91, 93, 96, 98, 102], "crm": [3, 52, 53, 102], "data": [3, 7, 11, 15, 19, 21, 23, 33, 35, 43, 45, 47, 51, 52, 53, 57, 59, 61, 63, 65, 73, 75, 81, 85, 91, 92, 93, 102], "imag": [3, 5, 7, 11, 15, 17, 19, 25, 31, 35, 39, 41, 45, 61, 69, 73, 98, 102], "javaaccessbridg": [3, 102], "java": [3, 56, 57, 102], "json": [3, 15, 19, 23, 31, 33, 35, 47, 51, 69, 75, 81, 85, 89, 93, 102], "mfa": [3, 15, 83, 102], "authent": [3, 15, 17, 19, 21, 33, 39, 41, 49, 51, 53, 60, 61, 63, 85, 91, 96, 102], "one": [3, 7, 11, 15, 21, 23, 25, 31, 33, 39, 41, 43, 45, 51, 53, 57, 59, 60, 61, 63, 65, 69, 81, 85, 93, 98, 102], "password": [3, 7, 23, 31, 39, 41, 45, 49, 51, 60, 61, 65, 67, 77, 79, 85, 87, 102], "otp": [3, 60, 61, 102], "oauth2": [3, 19, 39, 41, 61, 63, 102], "notifi": [3, 102], "differ": [3, 7, 11, 13, 15, 17, 19, 23, 25, 33, 35, 37, 39, 51, 57, 59, 63, 66, 67, 75, 81, 85, 87, 91, 93, 98, 102], "openai": [3, 102], "artifici": 3, "outlook": [3, 31, 43, 67, 100, 102], "workitem": [3, 41, 75, 81, 102], "work": [3, 5, 7, 11, 13, 21, 23, 25, 31, 33, 39, 41, 43, 47, 49, 57, 59, 71, 73, 75, 77, 79, 80, 81, 87, 98, 100, 102], "item": [3, 7, 11, 13, 15, 17, 21, 31, 35, 39, 41, 43, 47, 53, 57, 59, 63, 65, 71, 73, 75, 80, 81, 87, 91, 98, 102], "storag": [3, 19, 33, 47, 102], "asset": [3, 76, 102], "salesforc": [3, 102], "sap": [3, 102], "gui": [3, 86, 87], "client": [3, 15, 17, 19, 39, 41, 51, 53, 59, 61, 63, 85, 86, 102], "smartsheet": [3, 102], "sheet": [3, 19, 43, 45, 90, 93, 102], "sort": [3, 13, 43, 45, 59, 71, 92, 93, 102], "filter": [3, 15, 23, 35, 39, 41, 45, 53, 59, 71, 81, 91, 92, 93, 102], "tabular": [3, 15, 45, 92, 93], "execut": [3, 7, 9, 11, 15, 19, 21, 23, 31, 43, 47, 49, 53, 57, 71, 81, 83, 85, 94, 98, 100, 102], "twitter": [3, 102], "interfac": [3, 25, 39, 41, 43, 74, 95], "altern": [3, 21, 43, 53, 69, 77, 79, 81, 87, 98, 102], "word": [3, 11, 15, 31, 37, 41, 43, 51, 71, 98, 100, 102], "moment": [3, 23, 39, 43, 57, 102], "becaus": [3, 11, 39, 57, 83, 93, 98, 102], "post": [3, 51, 61, 85, 89], "need": [3, 7, 11, 15, 17, 19, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 51, 57, 71, 75, 83, 85, 87, 89, 91, 102], "fulli": [3, 11], "minimum": [3, 7, 31, 33, 35, 37, 39, 61, 102], "conda": [3, 7, 15, 25, 69, 98, 102], "yaml": [3, 7, 15, 19, 25, 69, 81, 102], "forg": [3, 9, 15, 98], "depend": [3, 7, 9, 11, 15, 25, 53, 55, 59, 75, 87, 91, 98, 102], "14": [3, 9, 87], "nodej": [3, 9], "22": [3, 9, 13, 19, 31, 45, 59, 87, 93, 98], "0": [3, 7, 9, 11, 13, 15, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 69, 71, 81, 87, 91, 93, 98, 100], "pip": [3, 15, 25, 55, 98, 102], "24": [3, 7, 45, 87], "robotframework": [3, 9, 11, 57, 102], "18": [3, 53, 87], "1": [3, 7, 9, 11, 13, 15, 17, 19, 23, 25, 31, 35, 37, 39, 41, 43, 45, 49, 51, 53, 55, 57, 59, 67, 69, 71, 73, 81, 83, 85, 87, 91, 93, 98, 100], "28": [3, 87], "rccpostinstal": [3, 9], "rfbrowser": [3, 9], "init": [3, 9, 15, 17, 19, 33, 102], "To": [3, 5, 7, 11, 13, 15, 19, 21, 23, 25, 27, 29, 31, 35, 37, 41, 43, 45, 51, 53, 57, 65, 69, 73, 75, 77, 79, 81, 85, 87, 91, 98, 102], "extra": [3, 9, 15, 19, 23, 35, 57, 67, 100, 102], "tesseract": [3, 25], "5": [3, 7, 11, 13, 15, 23, 25, 31, 39, 41, 45, 47, 55, 57, 65, 69, 71, 87, 93, 96, 98], "4": [3, 11, 13, 45, 51, 61, 69, 85, 87, 93, 98], "2": [3, 7, 9, 11, 13, 15, 17, 19, 23, 31, 35, 41, 45, 49, 51, 53, 59, 63, 69, 75, 81, 83, 87, 91, 93, 98], "without": [3, 11, 23, 41, 45, 47, 51, 57, 63, 69, 83, 98, 102], "7": [3, 9, 13, 15, 23, 41, 45, 69, 87, 93, 98], "venv": [3, 55], "m": [3, 5, 29, 31, 39, 45, 55, 63, 87, 98], "bin": [3, 57], "higher": [3, 49, 69, 81], "import": [3, 5, 7, 11, 15, 19, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 53, 55, 57, 59, 61, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 100, 102], "insid": [3, 7, 33, 47, 59, 61, 81, 87, 93, 102], "set": [3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "login": [3, 7, 11, 25, 49, 63, 65, 81, 85, 87], "avail": [3, 7, 9, 11, 15, 19, 25, 31, 37, 43, 45, 53, 57, 63, 65, 75, 81, 83, 85, 91, 93, 98, 102], "text": [3, 7, 11, 15, 17, 19, 21, 23, 25, 27, 31, 35, 37, 41, 43, 45, 47, 57, 63, 69, 73, 81, 87, 89, 91, 93, 96, 100, 102], "id": [3, 7, 11, 15, 19, 23, 29, 31, 33, 35, 37, 39, 41, 53, 57, 59, 61, 63, 65, 67, 69, 75, 77, 79, 81, 83, 85, 87, 91, 93, 96, 98, 102], "usernam": [3, 7, 23, 29, 31, 39, 41, 51, 67, 77, 79, 81, 85, 91, 93, 96], "lib": [3, 5, 23, 35, 45, 47, 55, 98], "open_available_brows": [3, 11, 102], "input_text": [3, 87], "tutori": 3, "question": [3, 11, 43], "commun": 3, "your": [3, 7, 11, 15, 17, 21, 25, 39, 41, 45, 53, 57, 69, 81, 85, 91, 98, 102], "fellow": 3, "expert": 3, "found": [3, 11, 25, 31, 35, 37, 39, 41, 43, 51, 53, 55, 57, 61, 63, 85, 87, 91, 93, 98, 100, 102], "critic": [3, 102], "interest": [3, 98], "head": [3, 7, 11, 41, 45, 51, 93, 102], "over": [3, 31, 35, 41, 45, 47, 59, 81, 93, 102], "see": [3, 7, 9, 11, 13, 15, 19, 23, 31, 33, 35, 37, 39, 41, 45, 47, 51, 53, 57, 59, 63, 67, 71, 75, 81, 83, 87, 91, 93, 98, 100, 102], "where": [3, 5, 7, 11, 15, 19, 23, 33, 39, 41, 43, 45, 51, 53, 55, 63, 67, 69, 71, 81, 85, 93, 98, 100, 102], "start": [3, 7, 11, 13, 15, 19, 25, 31, 37, 39, 41, 43, 45, 47, 51, 53, 57, 59, 61, 75, 81, 83, 87, 93, 98, 100, 102], "base": [3, 7, 9, 11, 19, 23, 25, 33, 41, 47, 49, 51, 55, 57, 59, 60, 61, 63, 69, 73, 75, 77, 79, 81, 91, 93, 98, 102], "machin": [3, 7, 29, 31], "templat": [3, 25, 31, 55, 91, 102], "so": [3, 7, 11, 15, 33, 41, 43, 53, 59, 63, 69, 71, 87, 91, 98, 100, 102], "choic": [3, 35], "Not": [3, 11, 47, 53, 102], "recommend": [3, 11, 15, 25, 31, 41, 57, 71, 81, 98, 102], "some": [3, 7, 9, 11, 13, 25, 33, 41, 45, 47, 57, 59, 77, 79, 81, 87, 91, 98, 102], "relat": [3, 11, 35, 37, 59, 61, 75, 102], "At": [3, 23, 31, 39, 43, 57, 98], "12": [3, 13, 19, 39, 57, 59, 71, 87, 93], "might": [3, 11, 15, 41, 43, 45, 57, 59, 98], "caus": [3, 11, 45, 53, 57, 81, 102], "poetri": 3, "invok": 3, "underli": [3, 11, 15, 51, 83, 102], "compil": 3, "build": [3, 7, 102], "script": [3, 19, 23, 25, 59, 87, 98, 102], "purpos": [3, 11, 57, 87], "lint": 3, "test": [3, 11, 19, 43, 51, 57, 69, 71, 85, 87, 98, 102], "publish": 3, "initi": [3, 7, 15, 19, 33, 39, 41, 43, 45, 51, 53, 57, 63, 75, 77, 79, 83, 93, 102], "configur": [3, 11, 23, 33, 39, 41, 43, 53, 61, 63, 71, 75, 77, 79, 81, 89, 91, 100, 102], "config": 3, "virtualenv": 3, "null": [3, 59], "true": [3, 5, 7, 11, 13, 15, 17, 19, 23, 29, 31, 35, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 67, 71, 73, 75, 81, 85, 87, 91, 93, 96, 98, 100, 102], "devpi": 3, "clone": 3, "branch": 3, "switch": [3, 11, 31, 33, 35, 73, 81, 91, 102], "stai": [3, 7, 102], "master": [3, 11, 51], "convent": 3, "hotfix": [3, 102], "its": [3, 7, 9, 11, 13, 15, 19, 25, 29, 31, 35, 41, 43, 47, 49, 51, 53, 63, 65, 81, 91, 93, 98, 102], "directori": [3, 5, 7, 11, 15, 19, 31, 35, 39, 41, 47, 49, 63, 71, 81, 91, 93, 102], "against": [3, 35, 39, 53, 57, 93], "devdata": [3, 47, 81, 102], "env": [3, 11, 31, 81, 102], "environ": [3, 11, 15, 17, 25, 33, 51, 57, 65, 75, 77, 79, 81, 85, 96, 98, 102], "variabl": [3, 5, 7, 13, 15, 17, 19, 33, 35, 39, 41, 43, 45, 49, 51, 53, 57, 59, 65, 67, 71, 75, 77, 79, 81, 83, 85, 91, 96, 102], "whl": 3, "dist": 3, "push": [3, 57], "raw": [3, 7, 21, 23, 33, 35, 37, 41, 51, 57, 81, 91, 102], "url": [3, 7, 11, 15, 19, 33, 35, 37, 39, 41, 43, 47, 51, 61, 63, 67, 69, 75, 77, 79, 81, 91, 102], "anoth": [3, 7, 15, 21, 25, 37, 43, 53, 73, 87, 100], "intern": [3, 7, 11, 15, 25, 33, 87, 102], "instanc": [3, 7, 11, 13, 23, 29, 31, 43, 47, 55, 63, 71, 73, 81, 85, 93, 98, 100, 102], "point": [3, 7, 25, 31, 33, 55, 98, 102], "robot_arg": 3, "target_robot_fil": 3, "report": [3, 41, 53, 73, 81, 91], "none": [3, 5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "outputdir": 3, "output": [3, 7, 11, 17, 19, 21, 35, 41, 45, 47, 49, 51, 59, 81, 83, 93, 98, 102], "logtitl": 3, "target_python_fil": 3, "sure": [3, 11, 41, 43, 51, 71, 87, 98, 100, 102], "guidelin": 3, "It": [3, 7, 11, 13, 25, 31, 37, 41, 45, 47, 53, 55, 57, 59, 61, 63, 73, 81, 83, 87, 91, 93, 102], "like": [3, 5, 7, 11, 15, 31, 33, 35, 41, 45, 51, 53, 59, 63, 81, 87, 91, 93, 96, 98, 102], "ha": [3, 7, 11, 13, 15, 21, 31, 39, 41, 45, 47, 51, 53, 57, 59, 63, 81, 85, 87, 91, 93, 102], "chang": [3, 7, 11, 13, 19, 25, 31, 41, 43, 45, 47, 49, 57, 59, 71, 73, 81, 83, 85, 87, 91, 98, 100, 102], "those": [3, 11, 29, 31, 41, 51, 53, 57, 75, 83, 96], "root": [3, 11, 19, 45, 59, 63, 81, 98], "call": [3, 7, 11, 15, 19, 21, 23, 25, 31, 33, 41, 43, 45, 47, 53, 57, 61, 63, 67, 69, 71, 73, 81, 83, 87, 91, 93, 98, 102], "meta": [3, 15, 17], "built": [3, 15, 47, 49, 51, 53, 57, 76, 81, 102], "docgen": 3, "local": [3, 5, 7, 11, 13, 15, 17, 19, 33, 35, 41, 45, 47, 49, 63, 77, 79, 81, 96, 102], "reflect": [3, 81, 91], "doc": [3, 7, 9, 11, 13, 15, 19, 33, 41, 43, 51, 53, 59, 69, 71, 81, 91, 100, 102], "must": [3, 7, 11, 15, 19, 25, 33, 39, 41, 43, 45, 51, 53, 57, 59, 61, 63, 69, 71, 77, 79, 81, 87, 91, 93, 98, 100, 102], "util": [3, 13, 15, 19, 21, 35, 43, 51, 53, 57, 71, 81, 91, 98, 100, 102], "package_nam": 3, "appropri": [3, 91, 102], "g": [3, 11, 19, 31, 35, 41, 43, 45, 47, 51, 53, 57, 63, 67, 69, 77, 79, 87, 91, 93, 98, 102], "reinstal": 3, "edit": [3, 7], "ad": [3, 5, 7, 11, 13, 19, 23, 25, 41, 45, 51, 53, 57, 59, 61, 63, 81, 85, 87, 98, 102], "repeat": 3, "order": [3, 7, 11, 13, 21, 23, 33, 35, 39, 41, 43, 45, 47, 51, 53, 57, 59, 61, 63, 69, 71, 85, 87, 91, 93, 98, 102], "reset": [3, 13, 91], "updat": [3, 7, 19, 25, 31, 39, 41, 47, 51, 53, 59, 61, 73, 85, 91, 93, 96, 102], "view": [3, 7, 53, 57, 102], "navig": [3, 7, 11, 25, 102], "localhost": 3, "8000": [3, 23], "live": [3, 69], "webpag": [3, 11], "cv": [3, 102], "py": [3, 7, 11, 55, 81], "test_funct": 3, "inv": 3, "testrobot": 3, "r": [3, 7, 35, 43, 87], "robot_nam": 3, "t": [3, 7, 11, 21, 33, 39, 41, 45, 47, 53, 57, 61, 73, 81, 83, 87, 93, 98, 100, 102], "task_nam": 3, "remot": [3, 7, 11, 33, 49, 51], "rst": [3, 11], "been": [3, 7, 13, 15, 19, 21, 23, 31, 41, 43, 47, 51, 53, 57, 81, 85, 87, 91, 102], "merg": [3, 43, 51, 73, 93, 102], "within": [3, 5, 11, 15, 19, 21, 31, 39, 53, 57, 65, 77, 79, 87, 96, 98, 102], "latest": [3, 11, 13, 15, 19, 51, 57, 67, 93], "pyproject": 3, "toml": 3, "command": [3, 11, 21, 23, 25, 31, 49, 98, 102], "lock": [3, 25, 31, 91, 98, 102], "y": [3, 5, 25, 29, 31, 39, 55, 57, 87, 98, 102], "z": [3, 59], "green": [3, 7, 102], "visual": [3, 98, 102], "studio": 3, "editor": [3, 102], "sema4": 3, "ai": [3, 19, 32, 33, 34, 35, 68, 102], "languag": [3, 15, 17, 19, 53, 59, 69, 96, 102], "gitlen": 3, "less": [3, 39, 53, 69, 96, 102], "prone": 3, "term": [3, 11, 59, 67, 98], "apach": 3, "msgraph": [3, 102], "netsuit": [3, 102], "robotloglisten": [3, 102], "todo": 3, "link": [4, 6, 7, 9, 10, 11, 12, 14, 16, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 63, 64, 66, 67, 68, 70, 72, 74, 76, 78, 80, 82, 84, 85, 86, 87, 88, 90, 92, 94, 95, 97, 99], "class": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "folder": [5, 7, 11, 19, 39, 41, 47, 63, 71, 91, 102], "With": [5, 7, 11, 15, 25, 33, 41, 53, 57, 59, 81, 85, 102], "curdir": [5, 11, 15, 19, 23, 35, 37, 39, 41, 55, 57, 71, 75, 93, 100], "recurs": [5, 19, 31, 47, 59, 102], "exclud": [5, 91], "list": [5, 7, 11, 13, 15, 17, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 63, 65, 69, 71, 73, 75, 81, 83, 85, 87, 91, 93, 96, 98, 102], "FOR": [5, 7, 13, 15, 17, 19, 23, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 57, 59, 69, 71, 75, 81, 83, 91, 93, 96, 98], "IN": [5, 7, 13, 15, 17, 19, 23, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 69, 71, 75, 81, 83, 91, 93, 96, 98], "end": [5, 7, 11, 13, 15, 17, 19, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 57, 59, 61, 69, 71, 75, 81, 83, 91, 93, 96, 98, 100, 102], "info": [5, 15, 39, 41, 43, 51, 57, 61, 71, 73, 81, 83, 100, 102], "archive_folder_with_tar": 5, "list_arch": 5, "print": [5, 7, 11, 13, 15, 17, 19, 23, 25, 27, 29, 31, 33, 35, 37, 43, 49, 51, 53, 57, 59, 61, 69, 73, 75, 77, 79, 81, 83, 85, 91, 96, 98, 102], "robot_library_doc_format": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 89, 91, 93, 96, 98, 100], "rest": [5, 7, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 89, 91, 93, 96, 98, 100], "robot_library_scop": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100], "global": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "add_to_arch": 5, "union": [5, 7, 11, 13, 15, 19, 21, 23, 33, 35, 37, 39, 41, 43, 45, 47, 51, 53, 57, 59, 63, 71, 75, 81, 83, 85, 89, 91, 93], "str": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "archive_nam": 5, "paramet": [5, 7, 11, 13, 15, 17, 19, 21, 23, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100, 102], "filenam": [5, 7, 11, 15, 19, 23, 31, 37, 39, 41, 43, 45, 47, 51, 55, 57, 59, 63, 71, 75, 81, 100, 102], "rel": [5, 7, 11, 25, 47, 102], "exist": [5, 11, 15, 19, 23, 29, 31, 39, 41, 43, 45, 47, 51, 53, 55, 59, 61, 69, 71, 77, 79, 81, 83, 87, 89, 91, 93, 100, 102], "structur": [5, 11, 15, 35, 45, 57, 59, 63, 81, 89, 98, 102], "extrafil": 5, "txt": [5, 7, 15, 19, 31, 47], "myfil": [5, 19, 31], "stat": [5, 29, 31], "png": [5, 7, 11, 15, 19, 25, 31, 33, 35, 39, 41, 45, 47, 55, 67, 69, 71, 102], "gz": 5, "filename1": 5, "filename2": 5, "bool": [5, 7, 11, 13, 15, 19, 23, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 63, 67, 71, 75, 81, 85, 91, 93, 96, 100], "fals": [5, 7, 11, 13, 15, 19, 23, 29, 31, 33, 35, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 63, 67, 71, 75, 81, 85, 87, 91, 93, 96, 98, 100, 102], "sub": [5, 35, 39, 41, 59, 91, 102], "pattern": [5, 7, 15, 41, 47, 59, 81], "type": [5, 7, 11, 15, 19, 23, 25, 31, 35, 37, 39, 45, 51, 57, 59, 63, 65, 75, 81, 85, 87, 91, 93, 96, 98, 102], "determin": [5, 7, 53, 85, 93], "By": [5, 7, 11, 15, 19, 29, 31, 35, 43, 45, 51, 53, 57, 83, 85, 93, 102], "onli": [5, 7, 11, 13, 15, 19, 21, 23, 25, 33, 35, 39, 43, 45, 47, 51, 53, 57, 59, 61, 71, 77, 79, 81, 83, 87, 91, 93, 96, 98, 100, 102], "similarli": 5, "dotfil": 5, "archive_folder_with_zip": 5, "compress": 5, "deflat": 5, "bzip2": 5, "lzma": 5, "mydoc": [5, 19], "robottask": 5, "no_dotfil": 5, "packagelzma": 5, "bzip": 5, "extract_arch": 5, "member": [5, 15, 57], "extract": [5, 35, 41, 73, 102], "filepath": [5, 15, 19, 23, 35, 37, 39, 41, 49, 51, 57, 71, 75, 85], "c": [5, 7, 19, 31, 39, 43, 45, 53, 57, 59, 67, 87, 98], "extract_file_from_arch": 5, "background": [5, 7], "get_archive_info": 5, "dict": [5, 7, 11, 13, 15, 19, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 51, 53, 59, 61, 63, 73, 75, 81, 85, 89, 91, 93, 96, 98, 102], "dictionari": [5, 7, 11, 13, 15, 19, 29, 31, 35, 37, 39, 41, 43, 45, 51, 53, 59, 61, 63, 67, 71, 73, 75, 77, 79, 81, 85, 89, 91, 93, 96, 100, 102], "kei": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 31, 33, 35, 37, 39, 41, 43, 45, 49, 51, 53, 57, 59, 61, 69, 73, 75, 76, 81, 85, 87, 91, 93, 96, 98, 102], "filemod": 5, "mtime": 5, "attribut": [5, 11, 15, 19, 31, 39, 41, 83, 85, 87, 91, 98, 102], "last": [5, 11, 13, 45, 51, 53, 81, 93, 98], "modif": [5, 47], "d": [5, 23, 29, 31, 39, 45, 55, 87], "h": [5, 29, 31, 39, 45, 53, 55], "archiveinfo": 5, "while": [7, 11, 51, 53, 81, 91, 102], "allow": [7, 15, 19, 31, 45, 47, 51, 53, 57, 59, 61, 77, 79, 81, 83, 91, 93, 102], "capabl": [7, 11, 39, 102], "other": [7, 11, 15, 31, 33, 35, 39, 43, 51, 53, 59, 63, 71, 75, 77, 79, 81, 91, 93, 98, 100, 102], "hi": 7, "previou": [7, 11, 13, 25, 51, 57, 61, 71, 81, 93, 98, 102], "desir": [7, 63, 69, 102], "could": [7, 19, 51, 67, 85, 93], "finish": [7, 39, 41, 61, 87], "dynam": [7, 93, 102], "person": [7, 59, 91], "content": [7, 11, 15, 19, 23, 25, 27, 31, 35, 39, 41, 45, 47, 51, 57, 63, 77, 79, 81, 85, 89, 93, 96, 100, 102], "workflow": 7, "dialog": [7, 25, 31, 102], "compos": 7, "fly": 7, "state": [7, 25, 51, 57, 59, 75, 81, 98, 102], "relev": [7, 43, 57, 63, 71, 100, 102], "either": [7, 8, 11, 15, 17, 19, 21, 25, 31, 39, 43, 45, 51, 53, 59, 63, 81, 85, 87, 91, 93, 98, 102], "block": [7, 15, 43, 71, 100, 102], "continu": [7, 31, 47, 69, 102], "dure": [7, 11, 31, 61, 75, 82, 83, 102], "freeli": 7, "field": [7, 15, 25, 31, 33, 35, 37, 41, 43, 53, 57, 59, 63, 71, 73, 85, 87, 91, 93, 102], "successfulli": [7, 11, 102], "submit": [7, 11, 15, 69, 102], "enter": [7, 25, 31, 57, 87, 98], "abort": [7, 49], "close": [7, 11, 23, 31, 43, 45, 49, 51, 53, 57, 65, 71, 83, 85, 98, 100, 102], "forcefulli": 7, "valu": [7, 11, 13, 15, 19, 21, 23, 31, 33, 35, 39, 41, 43, 45, 49, 51, 53, 55, 57, 59, 61, 63, 65, 69, 71, 73, 75, 76, 77, 79, 81, 85, 87, 91, 93, 98, 100, 102], "uniqu": [7, 11, 15, 31, 53, 55, 85, 91, 93, 102], "button": [7, 11, 25, 31, 57, 87, 98, 102], "dotdict": [7, 102], "string": [7, 11, 13, 15, 19, 21, 23, 29, 31, 33, 39, 41, 43, 45, 47, 49, 51, 53, 57, 59, 61, 63, 69, 71, 73, 75, 81, 85, 87, 89, 91, 93, 96, 98, 100, 102], "checkbox": [7, 11, 87, 91, 102], "boolean": [7, 11, 15, 23, 39, 41, 45, 51, 53, 63, 93, 102], "won": [7, 11, 41, 53, 57, 85, 98, 102], "layout": [7, 102], "bottom": [7, 25, 31, 35, 41, 45, 55, 98, 100, 102], "bit": [7, 21, 25, 41, 57, 98], "margin": [7, 102], "around": [7, 11, 23, 25, 55, 59, 102], "spacious": 7, "overrid": [7, 57, 83, 85, 93, 102], "smaller": [7, 55, 93], "combin": [7, 15, 39, 53, 55, 59, 87, 93, 102], "stack": [7, 102], "posit": [7, 11, 25, 35, 41, 57, 69, 87, 93, 98, 100, 102], "center": [7, 31, 45, 57, 98, 102], "topleft": [7, 31], "bottomright": 7, "coordin": [7, 25, 31, 35, 55, 57, 98, 102], "tupl": [7, 11, 15, 23, 33, 35, 41, 43, 49, 51, 53, 55, 75, 81, 91, 93], "bse": 7, "absolut": [7, 25, 41, 47, 57, 75, 77, 79, 81, 102], "anywher": 7, "color": [7, 11, 45, 55, 102], "pad": [7, 87, 98], "navbar": [7, 102], "bar": [7, 11, 39, 41, 51, 61, 102], "Its": 7, "clear": [7, 19, 27, 45, 53, 57, 81, 93, 98, 102], "success": [7, 11, 23, 39, 41, 49, 55, 67, 71, 85, 87], "icon": [7, 89, 102], "titl": [7, 11, 19, 31, 57, 67, 87, 91, 102], "failur": [7, 11, 49, 51, 53, 81, 83, 102], "enterpris": 7, "label": [7, 15, 19, 25, 37, 41, 53, 87, 102], "troubleshoot": [7, 41, 102], "real": [7, 59, 96], "chonker": 7, "fat": 7, "cat": 7, "jpeg": [7, 15, 35, 37], "height": [7, 17, 25, 57, 98, 102], "1024": [7, 93], "width": [7, 11, 17, 25, 43, 45, 55, 57, 91, 98], "confirm": [7, 11, 41], "warn": [7, 19, 23, 31, 41, 43, 51, 53, 102], "delet": [7, 15, 19, 25, 39, 41, 45, 47, 49, 51, 59, 81, 85, 98, 102], "No": [7, 31, 45, 55, 59], "ye": 7, "IF": [7, 13, 19, 23, 39, 41, 47, 51, 57, 71, 75, 91, 102], "form": [7, 13, 15, 45, 51, 61, 63, 73, 81, 102], "send": [7, 15, 19, 31, 39, 41, 49, 51, 53, 57, 71, 75, 81, 87, 89, 91, 96, 98, 102], "feedback": [7, 11, 53, 102], "address": [7, 11, 15, 19, 23, 33, 35, 39, 41, 43, 49, 53, 57, 59, 61, 71, 81, 93, 102], "placehold": [7, 102], "maximum_row": [7, 102], "def": [7, 23, 25, 29, 31, 41, 45, 47, 55, 61, 71, 73, 75, 77, 79, 81, 83, 98], "success_dialog": 7, "add_icon": 7, "add_head": 7, "add_fil": 7, "run_dialog": [7, 102], "failure_dialog": 7, "add_text": 7, "add_link": 7, "large_dialog": 7, "add_imag": 7, "confirmation_dialog": 7, "add_submit_button": 7, "delete_us": 7, "input_from_dialog": 7, "add_text_input": 7, "send_feedback_messag": 7, "robot_auto_keyword": [7, 13, 33, 53, 57, 75, 81, 91], "add_button": 7, "callabl": [7, 81], "arg": [7, 11, 25, 33, 43, 47, 51, 63, 73, 77, 79, 81, 87, 93, 98], "locat": [7, 11, 15, 19, 23, 25, 31, 33, 41, 43, 45, 55, 57, 63, 65, 87, 91, 96, 98, 102], "verticalloc": 7, "left": [7, 17, 25, 31, 35, 45, 55, 57, 63, 98, 100, 102], "kwarg": [7, 11, 15, 25, 33, 43, 51, 61, 67, 73, 75, 77, 79, 81, 85, 87, 91, 98, 102], "callback": [7, 57, 102], "press": [7, 11, 25, 31, 57, 87, 98, 102], "pass": [7, 15, 23, 25, 33, 35, 39, 41, 43, 47, 49, 51, 53, 57, 59, 61, 63, 67, 73, 83, 85, 87, 91, 93, 98, 102], "app": [7, 11, 19, 31, 39, 41, 43, 53, 57, 61, 63, 71, 85, 96, 98, 100, 102], "second": [7, 11, 13, 15, 19, 29, 31, 39, 41, 45, 47, 49, 51, 53, 57, 59, 71, 87, 93], "let": [7, 59, 67], "infinit": [7, 102], "loop": [7, 11, 57, 83, 102], "first_view": 7, "second_view": 7, "add_checkbox": 7, "indic": [7, 15, 19, 39, 53, 59, 63, 98, 102], "select": [7, 11, 15, 19, 23, 31, 33, 41, 47, 55, 57, 59, 81, 85, 87, 91, 93, 98, 100, 102], "shown": [7, 11, 25, 43, 53, 83, 89, 98], "next": [7, 13, 15, 45, 53, 75, 81, 98, 102], "enabl": [7, 9, 11, 15, 19, 25, 31, 35, 41, 43, 45, 51, 57, 63, 71, 81, 87, 91, 100, 102], "trigger": [7, 75, 81, 102], "select_checkbox": [7, 87], "enable_vault": 7, "add_date_input": 7, "yyyi": [7, 13, 39, 85], "mm": [7, 13, 39, 45, 85], "dd": [7, 13, 39, 45, 85], "otherwis": [7, 11, 13, 15, 23, 29, 31, 39, 41, 45, 81, 98, 102], "birthdat": 7, "1993": 7, "04": 7, "26": [7, 13, 87], "consol": [7, 13, 19, 35, 37, 41, 43, 51, 59, 81, 85, 98], "year": [7, 13, 39, 45], "select_birthd": 7, "add_drop_down": 7, "drop": [7, 23, 31, 102], "menu": [7, 25, 31, 57, 85, 87, 98], "custom": [7, 11, 13, 25, 35, 39, 43, 45, 51, 71, 81, 85, 89, 93, 100, 102], "user_typ": 7, "admin": 7, "select_user_type_from_drop_down": 7, "open_file_button": 7, "generate_order_fil": 7, "add_file_input": 7, "file_typ": [7, 19], "nativ": [7, 53, 102], "up": [7, 11, 15, 25, 33, 47, 51, 53, 55, 87, 93, 98, 100, 102], "home": [7, 25, 41, 93, 98, 102], "restrict": [7, 23, 71, 98, 102], "svg": [7, 67], "limit": [7, 11, 15, 19, 23, 41, 43, 55, 57, 73, 75, 81, 91, 102], "xl": [7, 43, 45, 47, 51, 81, 102], "xlsx": [7, 21, 43, 45, 47, 65, 71, 75, 81, 93, 102], "src": [7, 31, 39, 41], "temp": [7, 47, 63], "everi": [7, 11, 35, 93, 102], "multiple_file_select": 7, "insert": [7, 11, 15, 19, 23, 25, 45, 85, 87, 91, 98, 102], "itself": [7, 11, 35, 53, 98], "unix": [7, 53, 91, 93], "style": [7, 11, 45, 53, 69, 102], "express": [7, 11, 15, 31, 57, 102], "everyth": [7, 47], "singl": [7, 11, 13, 15, 19, 23, 35, 39, 41, 43, 45, 47, 53, 59, 71, 75, 81, 87, 91, 93, 102], "charact": [7, 11, 15, 23, 31, 41, 43, 47, 59, 61, 69, 93, 96, 98, 100, 102], "seq": 7, "escap": [7, 87, 98], "wrap": [7, 33, 61, 62, 63, 68, 73, 87, 102], "squar": [7, 69], "bracket": [7, 87, 98], "between": [7, 13, 15, 31, 33, 39, 51, 53, 55, 59, 69, 93, 98, 102], "order0": 7, "order9": 7, "open_multiple_files_button": 7, "add_flet_icon": 7, "int": [7, 11, 13, 15, 19, 23, 25, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 53, 57, 59, 61, 65, 67, 69, 75, 81, 85, 91, 93, 96, 98, 100, 102], "galleri": [7, 102], "flet": [7, 102], "browser": [7, 47, 83, 98, 102], "lower_cas": 7, "blob": [7, 11], "035b00104f782498d084c2fd7ee96132a542ab7f": 7, "sdk": [7, 31, 91, 98], "flet_cor": 7, "l37": 7, "argb": 7, "rgb": [7, 55], "ffxxyyzz": 7, "xxyyzz": 7, "integ": [7, 13, 15, 23, 49, 51, 53, 57, 75, 91, 93, 102], "icon_nam": 7, "check_circle_round": 7, "ff00ff": 7, "48": [7, 45, 87], "add_custom_icon": 7, "medium": 7, "small": 7, "add_dialog_head": 7, "add_hidden_input": 7, "hidden": [7, 43, 91, 102], "feild": 7, "visibl": [7, 11, 25, 31, 35, 43, 57, 71, 83, 100, 102], "alwai": [7, 31, 45, 51, 57, 81, 93, 102], "static": [7, 35, 51], "togeth": [7, 11, 39, 47, 51, 53, 85, 93, 102], "alreadi": [7, 11, 19, 31, 33, 41, 45, 47, 51, 53, 61, 67, 87, 100, 102], "known": [7, 23, 63, 93, 102], "ensur": [7, 9, 39, 41, 43, 57, 61, 71, 100, 102], "user_id": [7, 19, 53], "get_user_inform": 7, "enter_user_inform": 7, "variant": 7, "short": [7, 59], "statu": [7, 11, 15, 29, 31, 35, 41, 51, 75, 81, 83, 85, 93, 96, 102], "being": [7, 11, 15, 33, 45, 53, 63, 102], "present": [7, 11, 43, 49, 53, 57, 63, 87, 102], "mark": [7, 41, 43, 45, 59, 71, 73, 75, 81, 93, 98, 102], "orang": 7, "triangl": 7, "red": [7, 45, 55, 102], "pixel": [7, 17, 25, 55, 91], "64": [7, 57, 102], "url_or_path": 7, "inlin": [7, 15, 39, 41, 102], "resiz": [7, 45, 102], "fit": 7, "explicitli": [7, 8, 11, 23, 93, 102], "aspect": 7, "ratio": 7, "me": [7, 19, 63, 96], "compani": [7, 11, 31, 53, 81], "logo": [7, 19, 25, 67], "clickabl": [7, 11, 102], "occur": 7, "add_troubleshoot_link": 7, "add_loading_bar": 7, "bar_height": 7, "tooltip": 7, "float": [7, 19, 25, 31, 33, 35, 37, 39, 41, 45, 47, 51, 53, 57, 59, 71, 85, 87], "load": [7, 11, 19, 21, 23, 45, 53, 59, 81, 93, 102], "stroke": 7, "black12": 7, "red500": 7, "mous": [7, 25, 31, 57, 98, 102], "hover": 7, "complet": [7, 11, 15, 33, 45, 47, 49, 51, 53, 61, 63, 69, 73, 98, 102], "indetermin": 7, "progress": [7, 49], "add_loading_spinn": 7, "stroke_width": 7, "spinner": [7, 102], "spin": 7, "endlessi": 7, "add_next_ui_button": 7, "lead": [7, 98, 102], "ui": [7, 25, 43, 53, 55, 56, 57, 71, 91, 98, 100, 102], "retriev": [7, 15, 33, 35, 51, 53, 61, 63, 81, 85, 87, 91, 98, 102], "advanc": [7, 25, 51, 53, 91, 102], "username_1": 7, "show": [7, 39, 43, 55, 57, 59, 71, 75, 100, 102], "detail": [7, 11, 15, 19, 33, 35, 39, 53, 63, 81, 85, 87, 98, 102], "user_data": 7, "phone_numb": 7, "main_form": 7, "customer_detail": 7, "retrieve_user_data": 7, "add_password_input": 7, "hide": [7, 45, 102], "look": [7, 35, 41, 45, 51, 53, 93, 98], "plachold": 7, "change_password": 7, "change_user_password": 7, "add_radio_button": 7, "radio": [7, 11, 87], "select_user_type_from_radio_button": 7, "add_slid": 7, "slider_min": 7, "slider_max": 7, "thumb_text": 7, "decim": [7, 45, 98, 102], "slider": [7, 102], "maximum": [7, 11, 15, 19, 41, 51, 53, 55, 57, 59, 69, 91, 96, 102], "thumb_label": 7, "slide": 7, "thumb": [7, 67], "amount": [7, 11, 19, 45, 49, 81, 93, 102], "specifi": [7, 11, 15, 19, 33, 41, 43, 45, 51, 53, 63, 65, 71, 81, 87, 91, 93, 98, 102], "round": [7, 53, 102], "min": [7, 11, 43, 87], "max": [7, 15, 43, 91, 102], "mani": [7, 11, 15, 19, 29, 31, 39, 51, 53, 59, 77, 79, 91, 93, 102], "percentag": [7, 45], "create_percentage_slid": 7, "prefer": [7, 11, 25, 53, 81, 96, 102], "highlight": [7, 11, 31, 57, 102], "accent": 7, "delete_user_warn": 7, "user_01": 7, "f": [7, 13, 17, 19, 25, 27, 29, 31, 35, 37, 43, 49, 53, 61, 73, 75, 77, 79, 85, 87, 91], "paragraph": [7, 100, 102], "larger": [7, 47, 55, 93, 102], "bodi": [7, 15, 19, 39, 41, 51, 53, 71, 81, 102], "show_error_dialog": 7, "minimum_row": [7, 102], "wasn": [7, 102], "longer": [7, 51, 57, 102], "scrollbar": [7, 87], "appear": [7, 11, 31, 69, 87, 102], "fill": [7, 45, 73], "assign": [7, 93], "doesn": [7, 11, 39, 41, 47, 53, 61, 81, 102], "complic": [7, 59], "sign": [7, 35], "dot": [7, 11, 15, 53, 63], "regex": [7, 59, 98, 102], "And": [7, 31, 39, 41, 51, 83, 98, 102], "regexp": [7, 31, 73], "invalid": [7, 102], "validate_email": 7, "open_dialog": [7, 31], "ask_us": [7, 102], "timeout": [7, 11, 15, 19, 31, 39, 41, 47, 49, 51, 57, 71, 102], "180": 7, "until": [7, 11, 15, 25, 31, 33, 47, 57, 81, 96, 98, 102], "wait": [7, 11, 15, 25, 31, 39, 41, 47, 51, 57, 71, 87, 102], "ask_user_dialog": 7, "clear_dialog": 7, "close_column": 7, "previous": [7, 15, 19, 21, 33, 39, 41, 45, 51, 61, 81, 85, 98, 102], "rais": [7, 11, 19, 31, 39, 43, 45, 47, 49, 51, 55, 57, 59, 61, 65, 81, 85, 93, 100, 102], "layouterror": 7, "recent": [7, 13, 96, 102], "close_contain": 7, "close_navbar": 7, "close_row": 7, "close_stack": 7, "open_column": 7, "doubl": [7, 25, 31, 41, 87, 98, 102], "double_column_layout": 7, "open_row": 7, "open_contain": 7, "background_color": 7, "much": [7, 35, 57, 102], "bgcolor": 7, "place": [7, 21, 53, 57, 93, 102], "center___": 7, "___center": 7, "20": [7, 15, 25, 45, 59, 65, 83, 87, 93], "blue500": 7, "sampl": [7, 47, 69, 93], "padded_element_with_background": 7, "open_navbar": 7, "go": [7, 11, 31, 39, 41, 81, 83, 102], "go_to_start_menu": 7, "assistant_navbar": 7, "side": [7, 11, 25, 57, 98, 102], "side_by_side_el": 7, "open_stack": 7, "overlap": [7, 45], "360": 7, "topright": 7, "right": [7, 25, 31, 35, 45, 55, 57, 61, 87, 98, 100, 102], "absolutely_positioned_el": 7, "refresh_dialog": 7, "typing_extens": 7, "liter": [7, 102], "480": 7, "on_top": 7, "windowloc": [7, 102], "set_titl": 7, "deprec": [8, 11, 27, 31, 39, 51, 53, 81, 102], "alia": [8, 11, 19, 25, 45, 47, 51, 102], "playwright": [8, 102], "upstream": [9, 87], "bundl": [9, 51], "avoid": [9, 35, 63, 81, 98, 102], "conflict": 9, "maxim": [9, 11, 87, 102], "practic": 9, "13": [9, 13, 15, 19, 53, 98], "17": [9, 23, 83, 87], "seleniumlibrari": [10, 11, 83, 102], "instal": [11, 15, 19, 25, 51, 55, 98, 102], "visit": 11, "webdriv": [11, 102], "seleniumhq": 11, "readm": 11, "driver": [11, 102], "chapter": 11, "binari": [11, 19, 47, 49, 51, 102], "toc": 11, "typic": [11, 15, 45, 61], "most": [11, 45, 57, 81, 83, 91, 96, 98], "often": [11, 25, 31], "webel": [11, 102], "strategi": [11, 98, 102], "css": 11, "selector": [11, 25, 102], "implicit": [11, 23, 51, 102], "sens": [11, 102], "context": [11, 13, 15, 87, 91], "click": [11, 25, 31, 57, 87, 98, 102], "href": 11, "normal": [11, 15, 31, 47, 59, 77, 79, 81, 83, 98, 102], "accident": [11, 102], "recogn": [11, 19, 35, 71], "explicit": [11, 19, 35, 61, 87], "foo": [11, 51], "former": 11, "latter": [11, 102], "ident": [11, 15], "robotframeworkuserguid": 11, "space": [11, 25, 31, 39, 61, 98, 102], "ignor": [11, 47, 53, 81, 87, 91, 102], "equival": [11, 25], "tabl": [11, 15, 19, 23, 37, 39, 43, 45, 57, 63, 65, 75, 85, 87, 91, 102], "regist": [11, 39, 53, 63, 83], "tag": [11, 15, 35, 41, 102], "div": 11, "dom": [11, 102], "exact": [11, 15, 29, 31, 43, 102], "partial": [11, 31, 53, 83], "he": [11, 25], "ex": [11, 25, 31, 39, 98], "sizzl": 11, "my_id": 11, "jqueri": 11, "behavior": [11, 51, 63, 69, 102], "necessari": [11, 23, 41, 61, 91], "pro": 11, "con": 11, "simpli": [11, 33], "fast": [11, 31], "stabl": [11, 35], "solut": 11, "h1": [11, 41], "easi": [11, 57], "complex": 11, "approach": [11, 98], "power": [11, 59], "downsid": 11, "prior": [11, 33, 63, 81, 98], "conveni": [11, 102], "construct": [11, 13], "parenthesi": [11, 59, 98, 102], "front": [11, 87], "chain": [11, 15, 25, 33, 98, 102], "two": [11, 15, 17, 39, 45, 53, 75, 77, 79, 85, 93, 102], "greater": [11, 51, 53, 96, 102], "mix": [11, 96], "Or": [11, 85, 91], "although": [11, 102], "abei": 11, "whole": [11, 39, 43, 98, 102], "locator_list": 11, "div_id": 11, "elem": 11, "lookup": [11, 53, 102], "constraint": 11, "getelementbyid": 11, "reimplement": 11, "basic": [11, 19, 25, 39, 51, 57, 59, 63, 102], "refer": [11, 17, 19, 23, 25, 35, 47, 51, 55, 57, 59, 63, 73, 93, 98, 102], "conceptu": 11, "talk": 11, "03_webdriv": 11, "jsp": 11, "independ": 11, "usual": [11, 31, 33, 39, 41, 61, 81], "cooki": [11, 25, 51], "session": [11, 15, 43, 51, 61, 63, 71, 87, 100, 102], "profil": [11, 96, 102], "site": [11, 33, 55, 63, 96], "children": [11, 57, 102], "synonym": 11, "One": [11, 53, 93], "mai": [11, 13, 15, 25, 53, 63, 77, 79, 81, 85, 91], "tab": [11, 25, 87, 93, 98], "pop": [11, 41, 93], "belong": [11, 15, 33, 35, 75], "blank": [11, 45, 53], "demonstr": [11, 87], "browsera": 11, "robocon": 11, "io": [11, 13, 19, 51, 67, 87], "browserb": 11, "third": [11, 45, 93], "goe": [11, 67, 81], "currectli": 11, "delai": [11, 31, 51, 57, 87], "slow": [11, 31], "speed": [11, 31, 55, 57, 87, 91, 102], "long": [11, 23, 31, 39, 41, 53, 61], "event": [11, 15, 25], "alert": [11, 43, 71, 100, 102], "addition": [11, 35], "async": 11, "asynchron": [11, 15, 73, 102], "implicit_wait": 11, "04_webdriver_advanc": 11, "except": [11, 19, 41, 47, 51, 57, 81, 83, 93, 102], "page_load_timeout": 11, "42": [11, 87, 102], "30": [11, 13, 25, 31, 57, 87, 91], "handi": 11, "own": [11, 17, 41, 47, 102], "captur": [11, 55, 83, 102], "run_on_failur": [11, 83, 102], "resourc": [11, 15, 23, 51, 63, 76, 83], "disabl": [11, 39, 51, 81, 83, 87, 102], "noth": [11, 83, 87], "perform": [11, 19, 23, 41, 51, 53, 57, 59, 85, 87, 91, 102], "convers": [11, 69, 102], "hint": [11, 102], "did": 11, "covert": 11, "eventfiringwebdriv": 11, "webdriver_support": 11, "event_firing_webdriv": 11, "extend": [11, 33, 51, 53, 59, 65, 83, 85, 91, 96, 102], "further": [11, 25, 31, 33, 59, 61, 98, 102], "thread": [11, 43], "safe": [11, 23], "mainli": [11, 61, 102], "due": [11, 15, 83, 102], "wiki": [11, 23, 49], "frequent": 11, "q": 11, "plugin": [11, 102], "hack": 11, "prevent": [11, 81, 102], "auto_clos": [11, 102], "evalu": [11, 15, 19, 37, 39, 45, 53, 57, 102], "available_opt": 11, "chrome": [11, 102], "chromiumedg": 11, "edg": [11, 102], "firefox": [11, 102], "firefoxopt": 11, "ie": [11, 41, 71, 83, 98, 102], "safari": 11, "available_servic": 11, "chromedriv": [11, 102], "msedgedriv": 11, "geckodriv": [11, 102], "iedriverserv": 11, "safaridriv": 11, "browser_nam": 11, "ff": 11, "gc": 11, "googlechrom": 11, "headlesschrom": 11, "headless_chrom": 11, "headlessfirefox": 11, "headless_firefox": 11, "internetexplor": 11, "chromium_brows": 11, "msedg": 11, "robot_library_vers": 11, "supported_brows": 11, "add_library_compon": [11, 25, 73, 98], "library_compon": [11, 25, 73, 98], "translat": [11, 19, 25, 45, 73, 98, 102], "translated_kw_nam": [11, 25, 73, 98], "attach_chrome_brows": 11, "port": [11, 23, 41, 49, 67, 102], "digit": [11, 53], "effect": [11, 39, 61], "That": [11, 51], "9222": 11, "clear_all_highlight": 11, "made": [11, 29, 31, 53, 81], "click_button_when_vis": 11, "shadowroot": 11, "onc": [11, 31, 33, 45, 53, 91, 93, 102], "becom": [11, 47, 93], "ctrl": [11, 25, 31, 87, 98], "mybutton": 11, "click_element_if_vis": 11, "click_element_when_click": 11, "timedelta": 11, "readi": [11, 102], "orient": [11, 47, 102], "workaround": [11, 23, 57, 102], "tri": [11, 13, 15, 83, 102], "fallback": [11, 67, 98, 102], "mechan": [11, 51, 102], "durat": [11, 15, 19], "give": [11, 13, 15, 19, 39, 41, 45, 51, 57, 62, 63, 68, 83, 85, 102], "click_element_when_vis": 11, "action_chain": 11, "actionchain": 11, "queue": [11, 15, 81], "alt": [11, 25, 31, 41, 87, 98], "does_alert_contain": 11, "valueerror": [11, 31, 43, 55, 59, 65, 93, 102], "does_alert_not_contain": 11, "unexpect": [11, 102], "does_element_contain": 11, "ignore_cas": [11, 102], "insensit": [11, 25, 102], "spec": 11, "does_frame_contain": 11, "frame": [11, 57], "myfram": 11, "does_location_contain": 11, "does_page_contain": 11, "gmail": [11, 19, 41, 67, 71, 102], "does_page_contain_button": 11, "does_page_contain_checkbox": 11, "random": [11, 19], "does_page_contain_el": 11, "count": [11, 23, 39, 41, 43, 45, 57, 65, 93, 96, 100, 102], "textarea": [11, 57], "does_page_contain_imag": 11, "does_page_contain_link": 11, "does_page_contain_list": 11, "does_page_contain_radio_button": 11, "male": [11, 19], "does_page_contain_textfield": 11, "textfield": [11, 87, 102], "does_table_cell_contain": 11, "begin": [11, 15, 45, 91, 98, 102], "does_table_column_contain": 11, "nokia": [11, 15, 53, 85], "does_table_contain": 11, "februari": 11, "does_table_footer_contain": 11, "footer": [11, 100], "sum": [11, 43], "does_table_header_contain": 11, "header": [11, 35, 37, 41, 43, 45, 51, 75, 93, 100, 102], "month": [11, 13, 45], "does_table_row_contain": 11, "does_textarea_contain": 11, "sincer": 11, "does_textfield_contain": 11, "lname": [11, 75], "properti": [11, 13, 25, 29, 33, 43, 57, 61, 63, 71, 75, 77, 79, 81, 85, 91, 98, 100, 102], "noopenbrows": 11, "execute_cdp": 11, "chromium": [11, 102], "devtool": [11, 102], "chromedevtool": 11, "headless": [11, 102], "param": [11, 15, 19, 23, 51, 53, 102], "userag": 11, "83": [11, 87], "4103": 11, "53": 11, "cdp": [11, 102], "network": 11, "setuseragentoverrid": 11, "failure_occur": 11, "overwrit": [11, 19, 31, 39, 41, 45, 47, 51, 71, 75, 77, 79, 93, 102], "find_el": [11, 31], "parent": [11, 19, 39, 47, 57, 59, 98, 102], "webelememt": 11, "child": [11, 53, 59, 81, 98], "elementnotfound": [11, 57], "mpty": 11, "get_browser_cap": 11, "cap": [11, 25, 98], "get_element_statu": 11, "focus": [11, 57, 98], "get_keyword_argu": [11, 25, 73, 98], "get_keyword_document": [11, 25, 73, 98], "get_keyword_nam": [11, 25, 73, 98], "get_keyword_sourc": [11, 25, 73, 98], "keyword_nam": [11, 25, 73, 98], "get_keyword_tag": [11, 25, 73, 98], "get_keyword_typ": [11, 25, 73, 98], "get_testability_statu": 11, "seleniumtest": [11, 102], "get_webel": 11, "shadow": [11, 47, 102], "mozilla": 11, "en": [11, 13, 15, 19, 41, 43, 49, 51, 67, 71], "u": [11, 15, 19, 43, 71, 98], "highlight_el": [11, 57], "2px": 11, "blue": [11, 102], "outlin": [11, 31], "h2": 11, "input_text_when_element_is_vis": 11, "freetext": 11, "my": [11, 19, 23, 31, 39, 43, 47, 57, 67, 77, 79, 85, 91], "is_alert_pres": 11, "box": [11, 35, 57, 73, 102], "dismiss": [11, 43, 71, 100], "leav": [11, 19, 69, 81], "is_checkbox_select": 11, "tax": 11, "paid": 11, "is_chromium": 11, "is_element_attribute_equal_to": 11, "equal": [11, 21, 31, 39, 51, 53, 57, 59, 93, 102], "is_element_dis": 11, "missing_ok": [11, 47, 81, 102], "is_element_en": [11, 31], "field1": 11, "is_element_focus": 11, "is_element_text": 11, "john": [11, 45, 59, 75, 93], "is_element_vis": [11, 31], "is_list_select": 11, "car": 11, "ford": 11, "is_loc": 11, "is_radio_button_select": 11, "group_nam": 11, "group": [11, 19, 53, 81, 93, 98], "gender": [11, 17, 19], "is_radio_button_set_to": 11, "femal": 11, "is_textarea_valu": 11, "is_textfield_valu": 11, "lastnam": [11, 23, 41, 53], "is_titl": 11, "normalize_opt": 11, "argopt": 11, "use_profil": [11, 102], "browser_select": 11, "profile_nam": 11, "profile_path": 11, "proxi": [11, 51, 102], "user_ag": [11, 102], "download": [11, 15, 19, 39, 49, 51, 63, 75, 81, 91, 102], "sandbox": [11, 85, 102], "attempt": [11, 47, 49, 51, 55, 63, 91, 93, 102], "devic": [11, 15, 61], "forc": [11, 53, 57, 81, 91, 102], "agent": [11, 75, 77, 79], "overridden": [11, 15, 45], "creation": [11, 43, 47, 102], "chromeopt": 11, "add_argu": 11, "incognito": 11, "set_cap": 11, "acceptinsecurecert": 11, "randomli": 11, "pick": [11, 33, 57], "plan": [11, 41], "parallel": 11, "internet": 11, "explor": [11, 31, 57, 98], "mode": [11, 21, 23, 29, 31, 47, 49, 51, 53, 61, 98, 102], "124": 11, "flag": [11, 41, 45, 102], "preserv": [11, 102], "opera": 11, "headlessbrows": 11, "dir": [11, 47, 51], "8888": 11, "darwin": 11, "comma": [11, 19, 41, 59, 81, 91], "pars": [11, 15, 19, 21, 31, 53, 73, 81, 91, 102], "launch": [11, 31, 102], "stop": [11, 25, 93, 98, 102], "were": [11, 17, 31, 39, 45, 59, 63, 71, 98, 102], "slightli": 11, "faster": [11, 55, 102], "benefit": [11, 59, 102], "drawback": 11, "unless": [11, 19, 45, 53, 81, 91], "detect": [11, 15, 17, 19, 23, 33, 35, 41, 102], "rpa_headless_mod": [11, 102], "var": [11, 27, 81, 102], "somewher": 11, "outsid": [11, 51], "respect": [11, 13, 41], "mind": [11, 33, 57, 73, 102], "observ": [11, 98], "user_data_dir": 11, "pair": [11, 15, 45, 51, 55, 81, 102], "open_chrome_brows": [11, 102], "full": [11, 19, 37, 39, 41, 47, 63, 81, 83, 87, 91, 102], "open_headless_chrome_brows": 11, "idx": [11, 83], "open_user_brows": 11, "te": [11, 87], "print_to_pdf": 11, "output_path": [11, 41, 73], "attent": 11, "tot": 11, "printtopdf": 11, "save": [11, 15, 19, 31, 35, 39, 41, 43, 45, 51, 55, 57, 59, 63, 65, 71, 73, 81, 91, 100, 102], "landscap": 11, "displayheaderfoot": 11, "printbackground": 11, "prefercsspages": 11, "register_driv": 11, "webdrivercach": 11, "run_keyword": [11, 25, 73, 98], "timestamp": [11, 53, 55, 91], "img": [11, 39, 41], "NO": [11, 15, 17], "subdir": [11, 19, 31, 47], "loc": 11, "set_download_directori": 11, "download_pdf": 11, "disk": [11, 35, 41, 81, 102], "non": [11, 45, 47, 57, 81, 93, 98, 102], "preview": [11, 35, 102], "viewer": 11, "output_dir": [11, 41, 45, 55, 73, 91, 93], "cdn": 11, "legal": 11, "eula": 11, "v1": 11, "set_element_attribut": 11, "wait_and_click_button": 11, "especi": [13, 39, 98, 102], "busi": [13, 81, 102], "dai": [13, 45, 59, 91, 102], "holidai": [13, 102], "pendulum": 13, "mondai": 13, "fridai": 13, "weekdai": 13, "sundai": 13, "saturdai": 13, "countri": [13, 53, 98], "consider": [13, 102], "english": [13, 102], "add_custom_holidai": 13, "datetim": [13, 29, 31, 53], "calcul": [13, 15, 21, 31, 35, 59, 98, 102], "custom_holidai": 13, "03": 13, "08": 13, "09": 13, "more_holidai": 13, "compare_tim": 13, "time1": 13, "time2": 13, "compar": [13, 45, 59, 93, 102], "comparison": [13, 93, 102], "02": [13, 39, 51], "47": [13, 87], "create_tim": 13, "date_str": 13, "date_format_in": 13, "timezon": 13, "date_format_out": 13, "eustac": 13, "token": [13, 15, 19, 21, 33, 39, 41, 53, 59, 61, 63, 67, 69, 77, 79, 85, 91, 96, 102], "19": [13, 33, 35, 37, 61, 87], "mmm": [13, 45], "yy": [13, 45], "utc": [13, 39], "first_business_day_of_the_month": 13, "first_dai": 13, "2024": 13, "06": [13, 19, 59], "01": [13, 15, 39, 59], "get_iso_calendar": 13, "iso": [13, 102], "week": [13, 102], "iso_c": 13, "iso_year": 13, "iso_week": 13, "iso_weekdai": 13, "is_the_date_business_dai": 13, "rang": [13, 15, 19, 43, 45, 53, 83, 93, 102], "32": [13, 41, 43, 57, 59, 61, 87, 98], "is_business_dai": 13, "fi": [13, 51, 67], "els": [13, 21, 31, 39, 51, 57, 71, 85, 102], "relax": [13, 102], "is_the_date_holidai": 13, "date_in": 13, "is_holidai": 13, "2022": [13, 39, 53, 57], "last_business_day_of_the_month": 13, "last_dai": 13, "29": [13, 87], "reset_custom_holidai": 13, "empti": [13, 19, 31, 39, 41, 45, 47, 57, 63, 69, 71, 75, 81, 87, 93, 102], "return_holidai": 13, "holiday_nam": 13, "return_next_business_dai": 13, "return_format": [13, 39], "origin": [13, 15, 19, 21, 31, 35, 41, 45, 57, 59, 81, 102], "next_busi": 13, "05": [13, 69], "return_previous_business_dai": 13, "prev_busi": 13, "prev": 13, "previous_busi": 13, "set_business_dai": 13, "denot": [13, 53, 98], "4dai": 13, "set_local": 13, "locale_nam": 13, "now": [13, 39, 81, 83, 91, 102], "time_now": 13, "dddd": 13, "mmmm": 13, "juev": 13, "marzo": 13, "thursdai": 13, "march": [13, 53], "sort_list_of_d": 13, "revers": [13, 102], "oldest": 13, "datelist": 13, "07": 13, "31": [13, 39, 87], "35": [13, 87], "Of": [13, 23], "time_differ": 13, "start_dat": 13, "end_dat": 13, "start_timezon": 13, "end_timezon": 13, "end_date_is_lat": 13, "hour": [13, 15, 39, 61, 102], "minut": [13, 15, 39, 87], "diff": [13, 39], "1975": 13, "22t18": 13, "00": [13, 19, 39, 45, 59], "22t22": 13, "45": [13, 87, 102], "time_difference_between_timezon": 13, "america": 13, "new_york": 13, "europ": 13, "helsinki": 13, "time_difference_in_dai": 13, "21": [13, 45, 49, 87], "time_difference_in_hour": 13, "21t22": 13, "22t04": 13, "time_difference_in_minut": 13, "245": [13, 102], "time_difference_in_month": 13, "15": [13, 15, 69, 87, 93], "boston": 13, "region": [15, 17, 19, 25, 33, 55, 98, 102], "eu": [15, 19, 33], "west": 15, "robocorp_vault_nam": [15, 17, 102], "s3": [15, 102], "sq": [15, 102], "textract": [15, 102], "comprehend": [15, 102], "three": [15, 19, 31, 53, 93, 98], "aws_key_id": 15, "aws_kei": 15, "aws_region": [15, 102], "redshift": [15, 102], "author": [15, 33, 35, 37, 39, 41, 53, 61, 63, 65, 69, 85, 96, 102], "cluster": 15, "arn": 15, "serverless": 15, "temporari": [15, 102], "credenti": [15, 19, 41, 53, 65, 75, 96, 102], "permiss": [15, 19, 61, 63, 85], "getclustercredenti": 15, "role": [15, 19, 57, 65, 102], "assumpt": 15, "st": [15, 102], "abl": [15, 33, 57, 102], "assum": [15, 21, 45, 53, 63, 81, 102], "east": 15, "use_robocorp_vault": [15, 17, 19, 102], "vault_nam": [15, 17, 19, 39, 61, 102], "boto3": [15, 102], "plu": [15, 39, 41], "rememb": [15, 100], "bucket_nam": [15, 19], "testbucket12213123123": [15, 19], "upload": [15, 19, 49, 51, 63, 67, 81, 102], "bucket": [15, 19], "setup": [15, 19, 33, 39, 41, 43, 45, 53, 59, 65, 71, 75, 81, 83, 85, 96, 98, 100, 102], "analyze_docu": 15, "image_fil": [15, 17, 19], "json_fil": [15, 19], "model": [15, 33, 35, 37, 69, 91, 102], "analyz": [15, 17, 19, 33, 102], "relationship": [15, 25], "analysi": [15, 19, 102], "textractdocu": 15, "assume_rol": 15, "role_arn": 15, "role_session_nam": 15, "policy_arn": 15, "900": 15, "transitive_tag_kei": 15, "external_id": [15, 65], "serial_numb": 15, "token_cod": 15, "source_ident": 15, "secur": [15, 21, 23, 41, 63, 85], "consist": [15, 102], "account": [15, 19, 25, 39, 41, 53, 61, 63, 65, 67, 69, 71, 85, 91, 102], "accesskeyid": 15, "secretaccesskei": 15, "sessiontoken": 15, "expir": [15, 39, 41, 61], "2015": 15, "assumedroleus": 15, "assumedroleid": 15, "packedpolicys": 15, "123": [15, 59, 91, 98], "sourceident": 15, "iam": 15, "associ": [15, 31, 75], "transit": 15, "subsequ": [15, 91, 98], "administr": 15, "identif": 15, "who": [15, 41, 47], "trust": 15, "princip": 15, "convert_textract_response_to_model": 15, "create_bucket": 15, "acl": 15, "create_queu": 15, "queue_nam": 15, "create_redshift_statement_paramet": 15, "sql": [15, 23, 85, 102], "statement": [15, 23, 45, 102], "produc": [15, 23], "delete_bucket": 15, "delete_fil": 15, "delete_messag": [15, 39, 41], "receipt_handl": 15, "delete_queu": 15, "describe_redshift_t": 15, "schema": [15, 53, 102], "metadata": [15, 17, 25, 39, 41, 47, 53, 61, 63, 85, 91, 102], "notat": [15, 53, 63, 102], "columnlist": 15, "columndefault": 15, "iscasesensit": 15, "iscurr": 15, "issign": 15, "length": [15, 45, 59, 69, 81, 91, 93], "nullabl": 15, "precis": [15, 45], "scale": [15, 45, 57, 98, 102], "schemanam": 15, "tablenam": [15, 23, 43], "typenam": 15, "ommit": 15, "detect_document_text": 15, "detect_ent": 15, "lang": [15, 19, 96], "entiti": [15, 19, 98], "utf": [15, 21, 23, 41, 47, 59, 73, 102], "fewer": 15, "000": [15, 53], "byte": [15, 19, 21, 29, 31, 41, 47, 49, 51, 71, 102], "encod": [15, 19, 21, 23, 35, 41, 47, 51, 59, 73, 93, 102], "detect_senti": 15, "infer": [15, 53], "prevail": 15, "sentiment": [15, 19], "download_fil": 15, "target_directori": 15, "execute_redshift_stat": 15, "statement_nam": 15, "with_ev": 15, "40": [15, 45, 87, 102], "dml": 15, "definit": [15, 57, 63, 91, 102], "ddl": 15, "parameter": [15, 23, 102], "referenc": [15, 102], "implicitli": [15, 81], "simplic": 15, "helper": [15, 19, 33, 35, 37, 51, 63, 102], "natur": [15, 19, 53, 69, 98, 102], "scope": [15, 19, 39, 61, 63, 81, 91, 102], "mytabl": [15, 23], "seattl": 15, "queri": [15, 19, 23, 35, 39, 51, 85, 91, 96, 102], "whether": [15, 19, 31, 45, 51, 53, 69, 87, 91], "eventbridg": 15, "bu": 15, "becuas": 15, "waiter": 15, "execute_redshift_statement_asyncron": 15, "asyncron": 15, "later": [15, 19, 25, 33, 45, 81], "generate_presigned_url": 15, "object_nam": 15, "expires_in": 15, "extra_param": 15, "presign": [15, 102], "3600": 15, "get_cel": 15, "get_document_analysi": 15, "job_id": 15, "max_result": [15, 19, 43, 53], "1000": [15, 53, 69], "next_token": 15, "collect_all_result": 15, "job": 15, "pagin": [15, 65], "jobstatu": 15, "succeed": [15, 41], "aws_key_secret": 15, "jobid": 15, "s3bucket_nam": 15, "invoic": [15, 33, 35, 37, 39, 41, 71, 73, 102], "get_document_text_detect": 15, "get_pages_and_text": 15, "textract_respons": 15, "get_redshift_statement_result": 15, "statement_id": 15, "yet": [15, 31, 43, 67, 98, 102], "retreiv": [15, 53], "get_tabl": 15, "get_word": 15, "init_comprehend_cli": 15, "session_token": 15, "init_redshift_data_cli": 15, "cluster_identifi": 15, "database_us": 15, "secret_arn": 15, "init_s3_cli": 15, "init_sqs_cli": 15, "queue_url": 15, "init_sts_cli": 15, "init_textract_cli": 15, "list_bucket": 15, "list_fil": [15, 49], "jmespath": 15, "list_objects_v2": 15, "awslibrari": 15, "list_redshift_databas": 15, "list_redshift_schema": 15, "schema_pattern": 15, "substr": [15, 102], "_": [15, 91, 98], "list_redshift_t": 15, "table_pattern": 15, "neither": 15, "nor": [15, 98], "logger": 15, "receive_messag": 15, "receiv": [15, 39, 41, 61, 71, 81, 96, 102], "send_messag": [15, 19, 39, 41, 102], "message_attribut": 15, "set_robocorp_vault": [15, 19], "start_document_analysi": 15, "bucket_name_in": 15, "object_name_in": 15, "object_version_in": 15, "bucket_name_out": 15, "prefix_object_out": 15, "textract_output": 15, "start_document_text_detect": 15, "upload_fil": 15, "basenam": 15, "contenttyp": 15, "mybucket": 15, "extraarg": 15, "file1": [15, 19, 81], "file2": [15, 19], "northeurop": 17, "computervis": 17, "comput": [17, 25, 29, 31, 47, 98, 102], "vision": [17, 19, 25, 102], "face": [17, 19, 102], "speech": [17, 19, 102], "textanalyt": 17, "analyt": [17, 102], "subscript": [17, 53], "azure_textanalytics_kei": 17, "azure_subscription_kei": 17, "googlecloud": 17, "image_url": [17, 67], "imagetyp": 17, "visual_featur": 17, "ag": [17, 45, 93], "rectangl": [17, 31, 55, 98, 102], "facerectangl": 17, "init_text_analytics_servic": 17, "init_face_servic": 17, "init_computer_vision_servic": 17, "init_speech_servic": 17, "westeurop": 17, "sentiment_analyz": 17, "wonder": 17, "staff": 17, "detect_fac": 17, "path_to_fil": 17, "face_attribut": 17, "smile": 17, "hair": 17, "facialhair": 17, "emot": 17, "faceattribut": 17, "vision_analyz": 17, "url_to_imag": 17, "text_to_speech": 17, "leverag": 17, "ecosystem": 17, "neural_voice_styl": 17, "cheer": 17, "target_fil": [17, 19, 51, 63, 75], "mp3": [17, 19], "service_account": 19, "vault_secret_kei": 19, "cloud_auth_typ": 19, "serviceaccount": [19, 33], "gcp": 19, "approri": 19, "oauth": [19, 39, 41, 61, 63, 102], "init_vis": 19, "init_text_to_speech": 19, "detect_text": 19, "imagefil": 19, "synthesize_speech": 19, "said": 19, "aloud": 19, "add_attachment_to_messag": 19, "mimemessag": 19, "add_drive_shar": 19, "file_id": 19, "file_dict": 19, "domain": [19, 31, 39, 41, 51, 59, 71, 85, 102], "driverol": 19, "reader": [19, 102], "share_typ": 19, "drivetyp": 19, "notif": [19, 31, 67, 102], "notification_messag": 19, "drive": [19, 35, 53, 63, 102], "notificatin": 19, "permission_id": 19, "okta": 19, "tester": [19, 23], "hello": [19, 41, 67, 71, 81, 98], "review": 19, "writer": 19, "analyze_senti": 19, "text_fil": 19, "texttyp": 19, "plain_text": 19, "annotate_imag": 19, "image_uri": 19, "annot": [19, 102], "uri": [19, 51, 63], "annotate_video": 19, "video_fil": 19, "video_uri": 19, "output_uri": 19, "300": [19, 25, 31, 41, 71], "video": [19, 73, 98, 102], "feature_unspecifi": 19, "unspecifi": [19, 81], "label_detect": 19, "dog": 19, "flower": 19, "shot_change_detect": 19, "shot": 19, "explicit_content_detect": 19, "speech_transcript": 19, "transcript": 19, "text_detect": 19, "ocr": [19, 25, 31, 35, 37, 102], "object_track": 19, "logo_recognit": 19, "videointellig": 19, "movi": 19, "mp4": 19, "movie_annot": 19, "videoannot": 19, "classify_text": 19, "clear_sheet_valu": 19, "spreadsheet_id": 19, "sheet_rang": 19, "spreadsheet": [19, 102], "a1": [19, 43, 45, 102], "c1": 19, "copy_sheet": 19, "source_sheet_nam": 19, "new_sheet_nam": 19, "insertsheetindex": 19, "copi": [19, 27, 31, 43, 45, 47, 57, 93, 98, 100, 102], "zero": [19, 47, 91, 93], "copy_spreadsheet": 19, "target_spreadsheet_id": 19, "source_spreadsheet_id": 19, "another_spreadsheet_id": 19, "create_drive_directori": 19, "parent_fold": [19, 39], "create_messag": 19, "subject": [19, 39, 41, 67, 71], "message_text": 19, "recipi": [19, 39, 41, 71, 102], "plain": 19, "base64url": 19, "create_sheet": [19, 91], "sheet_nam": [19, 45, 91, 102], "create_spreadsheet": 19, "create_storage_bucket": 19, "visionfold": 19, "delete_drive_fil": 19, "multiple_ok": 19, "suppress_error": [19, 41], "Be": [19, 31, 51, 83, 87], "care": [19, 41], "ok": [19, 51], "folder_id": 19, "datafold": 19, "delete_sheet": 19, "sheet1": [19, 43], "delete_storage_bucket": 19, "delete_storage_fil": 19, "detect_docu": 19, "detect_label": 19, "detect_t": 19, "arrang": 19, "download_drive_fil": 19, "2000": [19, 45], "download_storage_fil": 19, "mytestimg": 19, "image1": 19, "test1": 19, "test2": 19, "export_drive_fil": 19, "mimetyp": [19, 102], "export": [19, 43, 93, 100, 102], "face_detect": 19, "generic_spreadsheet_batch_upd": 19, "batch": [19, 75, 102], "googleapi": 19, "dyn": 19, "sheets_v4": 19, "addband": 19, "addchart": 19, "addconditionalformatrul": 19, "adddatasourc": 19, "adddimensiongroup": 19, "addfilterview": 19, "addnamedrang": 19, "addprotectedrang": 19, "addsheet": 19, "addslic": 19, "appendcel": 19, "appenddimens": 19, "autofil": 19, "autoresizedimens": 19, "clearbasicfilt": 19, "copypast": 19, "createdevelopermetadata": 19, "cutpast": 19, "deleteband": 19, "deleteconditionalformatrul": 19, "deletedatasourc": 19, "deletedevelopermetadata": 19, "deletedimens": 19, "deletedimensiongroup": 19, "deletedupl": 19, "deleteembeddedobject": 19, "deletefilterview": 19, "deletenamedrang": 19, "deleteprotectedrang": 19, "deleterang": 19, "deletesheet": 19, "duplicatefilterview": 19, "duplicatesheet": 19, "findreplac": 19, "insertdimens": 19, "insertrang": 19, "mergecel": 19, "movedimens": 19, "pastedata": 19, "randomizerang": 19, "refreshdatasourc": 19, "repeatcel": 19, "setbasicfilt": 19, "setdatavalid": 19, "sortrang": 19, "texttocolumn": 19, "trimwhitespac": 19, "unmergecel": 19, "updateband": 19, "updatebord": 19, "updatecel": 19, "updatechartspec": 19, "updateconditionalformatrul": 19, "updatedatasourc": 19, "updatedevelopermetadata": 19, "updatedimensiongroup": 19, "updatedimensionproperti": 19, "updateembeddedobjectbord": 19, "updateembeddedobjectposit": 19, "updatefilterview": 19, "updatenamedrang": 19, "updateprotectedrang": 19, "updatesheetproperti": 19, "renam": [19, 39, 41, 45, 47, 49, 93, 102], "updateslicerspec": 19, "updatespreadsheetproperti": 19, "sheetid": 19, "333555666": 19, "get_all_sheet_valu": 19, "value_render_opt": 19, "unformatted_valu": 19, "datetime_render_opt": 19, "formatted_str": 19, "repres": [19, 43, 45, 53, 55, 57, 59, 63, 75, 85, 91, 93, 98], "sheet_id": [19, 91], "get_document_ent": 19, "get_document_languag": 19, "get_drive_file_by_id": 19, "get_drive_folder_id": 19, "narrow": 19, "root_id": 19, "get_sheet_by_nam": 19, "get_sheet_formula": 19, "formula": [19, 43, 45, 91, 102], "_description_": 19, "get_sheet_valu": 19, "spreadhsheet": 19, "get_spreadsheet_basic_inform": 19, "get_spreadsheet_detail": 19, "get_storage_bucket": 19, "handle_mimetyp": 19, "parsed_part": 19, "msg": [19, 39, 51], "folder_nam": [19, 39, 41, 71, 102], "init_apps_script": 19, "token_fil": 19, "init_document_ai": 19, "sa": 19, "init_dr": 19, "init_gmail": 19, "init_natural_languag": 19, "init_sheet": 19, "init_speech_to_text": 19, "init_storag": 19, "init_transl": 19, "project_identifi": 19, "init_video_intellig": 19, "insert_sheet_valu": 19, "major_dimens": 19, "value_input_opt": 19, "user_ent": 19, "11": [19, 31, 43, 71, 87, 100], "aa": [19, 45], "bb": 19, "cc": [19, 39, 41, 71, 102], "b": [19, 45, 59, 85, 87, 98], "list_messag": [19, 39, 41, 102], "label_id": 19, "include_json": 19, "include_spam": 19, "spam": 19, "trash": 19, "mika": [19, 39], "list_processor": 19, "project_id": [19, 33], "processor": 19, "p": [19, 39, 41, 87], "processor_id": 19, "type_": 19, "display_nam": 19, "list_shared_drive_fil": 19, "subfold": [19, 41, 63, 102], "list_storage_bucket": 19, "list_storage_fil": 19, "list_supported_voic": 19, "language_cod": 19, "voic": 19, "load_document_respons": 19, "google_process": 19, "google_doc": 19, "ent": 19, "move_drive_fil": 19, "source_id": 19, "sourcefold": 19, "sourceid": 19, "target_fold": [19, 41, 63, 71], "parse_part": 19, "msg_id": 19, "partit": 19, "process_docu": 19, "file_path": [19, 35, 63], "mime_typ": 19, "mime": 19, "google_project_id": 19, "receipt_processor_id": 19, "mydocu": [19, 39], "recognize_text_from_audio": 19, "audio_fil": 19, "audio_uri": 19, "en_u": 19, "audio_channel_count": 19, "sample_r": 19, "audio": 19, "rate": 19, "hertz": 19, "16000": 19, "remove_all_drive_shar": 19, "owner": [19, 47, 53, 91, 102], "retain": [19, 63], "remove_drive_share_by_criteria": 19, "remove_drive_share_by_permission_id": 19, "sharabl": 19, "vnd": 19, "shareabl": 19, "rename_sheet": 19, "run_script": 19, "script_id": 19, "function_nam": 19, "assertionerror": [19, 100, 102], "thrown": 19, "formid": 19, "aaad4232": 19, "formvalu": 19, "abc21397283712da": 19, "submit_form": 19, "save_document_respons": 19, "101134120147": 19, "receipt_processor": 19, "file_in": 19, "receipt1": 19, "jpg": [19, 35, 37, 47], "receipt": [19, 37], "search_drive_fil": 19, "modifiedtim": 19, "2020": 19, "04t12": 19, "datadirectori": 19, "sender": [19, 39, 41, 71, 89, 102], "sent": [19, 39, 51, 53, 75, 81, 85, 102], "set_audio_typ": 19, "set_headers_to_message_dict": 19, "payload": [19, 75, 81, 102], "message_id": [19, 41], "set_image_typ": 19, "set_list_paramet": 19, "auth_typ": 19, "standard": [19, 53, 59, 93, 98], "synthes": [19, 102], "synchron": 19, "to_a1_not": 19, "column_numb": 19, "row_numb": [19, 91], "to_column_lett": 19, "letter": [19, 45, 102], "source_languag": 19, "target_languag": 19, "de": [19, 59], "update_drive_fil": 19, "updateact": 19, "star": 19, "unstar": 19, "untrash": 19, "update_sheet_valu": 19, "row_data": 19, "33": [19, 87], "44": [19, 87], "a6": 19, "c6": 19, "upload_drive_fil": 19, "make_dir": 19, "file1_id": 19, "file2_id": 19, "newdata": 19, "new_fold": 19, "file3_id": 19, "upload_storage_fil": 19, "target_nam": 19, "encryption_typ": 21, "encryptiontyp": 21, "fernet": 21, "ae": 21, "cbc": 21, "128": 21, "hmac": 21, "sha256": 21, "aes256": [21, 102], "decrypt": [21, 73, 102], "cli": [21, 102], "rgx1eda07yz7ud08chipsunn8vaaurxw0pabsal9zjm": 21, "encryptionkei": 21, "decrypt_fil": 21, "enc": 21, "decrypt_str": 21, "base64": [21, 32, 33, 34, 35, 41, 102], "encrypt_fil": 21, "encrypt_str": 21, "don": [21, 33, 39, 45, 81, 93, 102], "generate_kei": 21, "lost": [21, 53], "recov": 21, "anyon": 21, "gain": [21, 57], "hash_fil": 21, "sha1": 21, "digest": [21, 51], "md5": 21, "uslyrhlbu8nzy29ymzhdupderp4": 21, "hash_str": 21, "use_encryption_kei": 21, "use_encryption_key_from_vault": 21, "cryptokei": 21, "procedur": [23, 102], "random_data": 23, "quot": [23, 39, 41, 53, 102], "exec": 23, "insertjsondatatosamplet": 23, "pep": 23, "0249": 23, "db": 23, "moin": 23, "databaseinterfac": 23, "program": [23, 47, 59], "databaseprogram": 23, "pymysql": [23, 102], "127": [23, 49], "incoming_ord": [23, 85], "filesecret": [23, 77, 79, 85, 102], "get_secret": [23, 33, 35, 37, 39, 53, 61, 69, 75, 77, 79, 85], "databasesecret": 23, "connect_to_databas": [23, 102], "call_stored_procedur": 23, "sanstran": [23, 102], "as_tabl": [23, 85, 102], "transact": [23, 87], "rollback": [23, 102], "turn": 23, "off": [23, 35, 39, 53, 102], "firstparam": 23, "secondparam": 23, "thirdparam": 23, "mystpr": 23, "module_nam": 23, "charset": 23, "config_fil": 23, "cfg": 23, "ssl": [23, 51, 102], "had": [23, 27, 102], "mysql": [23, 102], "ssl_ca": 23, "ssl_cert": 23, "ssl_kei": 23, "client_flag": 23, "hostnam": 23, "3306": 23, "databasenam": 23, "found_row": 23, "digicertglobalrootg2": 23, "crt": 23, "pem": [23, 51], "dbconfig": 23, "azuredb": 23, "connector": [23, 102], "descripton": 23, "mydb": 23, "db_descript": 23, "disconnect_from_databas": 23, "firstnam": [23, 53], "disconnect": 23, "execute_sql_script": 23, "get_number_of_row": 23, "condit": [23, 45, 55, 59, 93], "claus": [23, 85], "column1": [23, 45, 91], "column2": [23, 45, 91], "get_row": [23, 91], "arguement": 23, "arvo": 23, "newvalu": 23, "updatedvalu": 23, "assert": [23, 51, 102], "untrust": 23, "bobbi": 23, "row_count": 23, "ones": [23, 35, 98, 102], "heurist": 23, "fetch": [23, 102], "decid": 23, "stored_procedur": 23, "insert_and_return_nam": 23, "sqlite3": 23, "sqlite": 23, "data1": [23, 93], "1st": 23, "data2": [23, 93], "2nd": [23, 98], "INTO": 23, "set_auto_commit": 23, "locators_path": [25, 98, 102], "keyboard": [25, 31, 98, 102], "emul": [25, 102], "scrape": 25, "graphic": 25, "screen": [25, 31, 55, 61, 87, 96, 98], "offset": [25, 31, 98, 102], "bound": [25, 35], "rectangular": 25, "confid": [25, 35, 102], "divid": [25, 98], "colon": 25, "omit": [25, 51, 73, 91, 98, 102], "50": [25, 39], "robot_root": [25, 71, 81], "200": [25, 51, 55, 93], "sparebin": 25, "enough": [25, 35, 98], "area": [25, 45, 55, 102], "600": 25, "400": [25, 55], "disappear": 25, "truth": 25, "websit": [25, 83], "vscode": [25, 77, 79, 81, 98, 102], "craft": 25, "shortcut": 25, "underscor": 25, "page_down": 25, "shift": [25, 87, 98], "shift_l": 25, "shift_r": 25, "ctrl_l": 25, "ctrl_r": 25, "alt_l": 25, "alt_r": 25, "alt_gr": 25, "altgr": 25, "cmd": 25, "super": 25, "cmd_l": 25, "cmd_r": 25, "arrow": [25, 98], "backspac": [25, 87, 98], "esc": [25, 87, 98], "page_up": 25, "caps_lock": 25, "f1": [25, 87, 98, 102], "f20": [25, 98], "undefin": 25, "num_lock": 25, "num": [25, 45, 98], "paus": [25, 98], "break": [25, 98, 102], "print_screen": 25, "scroll_lock": 25, "scroll": [25, 87, 98], "rule": 25, "appli": [25, 39, 53, 59, 81, 91, 93, 102], "left_click": 25, "double_click": 25, "triple_click": 25, "tripl": 25, "right_click": 25, "middl": [25, 31, 98, 102], "erp_client": 25, "write_entry_in_account": 25, "open_appl": [25, 31, 43, 71, 100], "type_text": [25, 57, 102], "press_kei": [25, 57], "input_label": 25, "write_to_field": 25, "move_mous": 25, "click_new": 25, "wait_for_el": [25, 31], "anchor": [25, 98, 102], "500": [25, 87, 96, 102], "type_not": 25, "click_with_offset": 25, "past": [27, 57, 98, 100, 102], "clip": 27, "copy_to_clipboard": 27, "paste_from_clipboard": [27, 100], "clear_clipboard": 27, "boot_tim": 29, "boot": [29, 31], "as_datetim": [29, 31], "memori": [29, 31, 45, 51, 53, 59, 91, 102], "get_computer_inform": 29, "op": 29, "get_boot_tim": [29, 31], "get_machine_nam": [29, 31], "get_usernam": [29, 31], "get_memory_stat": [29, 31], "__name__": [29, 31, 75], "__main__": [29, 31, 75], "boot_time_in_seconds_from_epoch": [29, 31], "epoch": [29, 31, 53], "datetime_format": [29, 31], "boottim": [29, 31], "mem": [29, 31], "kill_process": [29, 31], "process_nam": [29, 31, 75], "kill": [29, 31, 102], "succe": [29, 31], "calc": [29, 31, 45, 98], "strict": [29, 31, 57, 93, 102], "kill_process_by_pid": [29, 31], "pid": [29, 31, 57, 102], "process_exist": [29, 31], "inclus": [29, 31, 93], "process_id_exist": [29, 31], "4567": [29, 31], "put_system_to_sleep": [29, 31], "put": [29, 31, 51, 93], "sleep": [29, 31, 51, 83, 98], "backend": [31, 63, 102], "uia": [31, 57], "dispatch": 31, "offic": [31, 43, 71, 102], "pywinauto": 31, "investig": 31, "get_windows_el": 31, "class_nam": [31, 98, 102], "control_typ": [31, 98, 102], "automation_id": [31, 98, 102], "send_kei": [31, 98], "type_kei": 31, "faq": [31, 43, 71, 100, 102], "attributeerror": [31, 39], "win32com": 31, "gen_pi": 31, "00020813": 31, "0000": 31, "c000": 31, "000000000046x0x1x9": 31, "clsidtoclassmap": 31, "powershel": 31, "localappdatatempgen_pi": 31, "suit": [31, 59, 71, 81, 100], "teardown": [31, 43, 45, 71, 83, 98, 100, 102], "rich": 31, "calculatorresult": [31, 98], "As": [31, 41, 45, 51, 71, 85, 91, 102], "win": [31, 98], "open_calcul": 31, "open_from_search": 31, "get_window_el": 31, "make_calcul": 31, "get_element_rich_text": 31, "strip": [31, 102], "exp": 31, "close_all_appl": 31, "calculate_rectangle_cent": 31, "rect": 31, "click_typ": [31, 57, 87], "horizont": [31, 45, 57, 98, 100], "vertic": [31, 45, 57, 98, 100], "450": 31, "notepad": [31, 102], "untitl": 31, "connect_by_handl": 31, "windowtitl": [31, 102], "existing_app": 31, "parse_el": 31, "appid": [31, 65], "88112": 31, "connect_by_pid": 31, "app_pid": 31, "3231": 31, "drag_and_drop": [31, 102], "src_locat": 31, "target_loc": 31, "handle_ctrl_kei": 31, "drop_delai": 31, "drag": [31, 102], "app1": 31, "vk_space": 31, "workfil": 31, "movethes": 31, "app2": 31, "wordpad": 31, "testfile_": 31, "search_criteria": 31, "get_app": 31, "app_id": 31, "active_appl": 31, "appdetail": 31, "get_dialog_rectangl": 31, "as_dict": 31, "coord": [31, 35], "get_el": [31, 57, 98], "reopen": 31, "get_element_cent": 31, "get_element_rectangl": 31, "rich_text": 31, "get_open_appl": 31, "app3": 31, "get_spaced_str": 31, "replac": [31, 41, 43, 47, 51, 59, 71, 77, 79, 81, 93, 100, 102], "bond": 31, "get_text": 31, "Into": [31, 102], "55": 31, "val": [31, 35, 43], "element_json": 31, "descend": [31, 39, 43, 59, 93], "get_window_list": 31, "control_id": 31, "is_act": [31, 102], "keyboard_focu": [31, 102], "is_element_match": 31, "itemdict": 31, "wildcard": [31, 43, 59, 81, 102], "reg": 31, "lock_screen": 31, "log_in": 31, "mynam": 31, "mypassword": 31, "menu_select": 31, "menuitem": [31, 57], "minimize_dialog": 31, "mouse_click": 31, "off_x": 31, "off_i": 31, "ctype": 31, "focu": [31, 53, 57, 87, 102], "toler": [31, 55], "corner": [31, 35, 55, 93], "myimag": [31, 39], "trickycheckbox": 31, "mouse_click_coord": 31, "delay_tim": 31, "mouse_click_imag": 31, "powerpoint": 31, "open_execut": 31, "work_dir": 31, "open_fil": [31, 100], "open_using_run_dialog": 31, "quit_appl": [31, 43, 71, 100, 102], "quit": [31, 43, 49, 71, 98, 100, 102], "application_id": 31, "f4": [31, 87, 98, 102], "refresh_window": 31, "restore_dialog": 31, "restor": [31, 83, 102], "send_keys_to_input": 31, "keys_to_typ": 31, "with_ent": 31, "send_delai": 31, "enter_delai": 31, "jame": 31, "THE": 31, "set_automation_spe": 31, "set_windows_backend": 31, "supported_backend": 31, "win32": 31, "switch_to_appl": 31, "type_into": 31, "empty_field": [31, 102], "use_refresh": 31, "interv": [31, 39, 41, 71], "elementnotfounderror": 31, "listbox": 31, "popup": [31, 43, 71, 100], "poll": [31, 47], "idp": [32, 34, 35, 36, 37, 102], "scan": [33, 35, 73], "facad": 33, "engin": [33, 87, 91, 102], "predict": [33, 35, 37, 102], "matter": [33, 102], "particular": 33, "jump": 33, "document_ai": 33, "858e4b37": 33, "6679": 33, "4552": 33, "9481": 33, "d5497dfc0b4a": 33, "enginenam": 33, "lib_docai": 33, "init_engin": 33, "df1d166771005ff4": 33, "agenc": 33, "347912": 33, "get_result": 33, "hashabl": [33, 35, 37, 59], "obtain": [33, 39, 41, 53, 57, 61, 63, 69, 91, 102], "again": [33, 81, 91], "final": [33, 39, 41, 45, 53, 61, 81, 98, 102], "split": [33, 59, 73, 102], "just": [33, 69, 102], "privat": [33, 49, 53, 102], "resolut": [33, 102], "isn": [33, 61, 102], "hold": [33, 81, 98], "ll": [33, 53], "absenc": [33, 59, 98, 102], "mail_apikei": 33, "mandatori": [33, 102], "guess": 33, "financ": [33, 35], "switch_engin": 33, "choos": 33, "auth": [35, 37, 39, 51, 53, 59, 61, 85, 102], "apikei": [35, 37, 75], "model_typ": [35, 37], "usa": [35, 53], "join": [35, 37, 47, 53, 67, 71, 75], "baselib": [35, 69], "set_author": [35, 37], "scan_document_fil": 35, "prop": 35, "base_url": 35, "filter_matching_signatur": 35, "match_respons": 35, "confidence_threshold": 35, "similarity_threshold": 35, "signatur": [35, 102], "threshold": 35, "simplifi": [35, 59, 102], "enclos": [35, 39, 102], "portion": [35, 47, 63], "score": 35, "crop": [35, 55, 102], "candid": 35, "alik": [35, 102], "discard": [35, 81, 93], "fraudul": 35, "sig": 35, "get_fields_from_prediction_result": [35, 37], "get_matching_signatur": 35, "reference_imag": 35, "query_imag": 35, "geometri": 35, "simpler": 35, "licens": 35, "card": 35, "contract": 35, "bank": 35, "reveal": 35, "resembl": 35, "ref_imag": 35, "get_signature_imag": 35, "cut": 35, "decod": [35, 41, 47, 102], "numer": [35, 53, 59, 98, 102], "along": 35, "ref_sig": 35, "qry_sig": 35, "get_user_data": 35, "credit": 35, "remain": [35, 53, 61, 93], "givennam": 35, "familynam": 35, "hasworkemail": 35, "companynam": 35, "numberofcredit": 35, "numberofpag": 35, "numberofupload": 35, "numberofcreditsspentondocu": 35, "numberofcreditsspentonfacedetect": 35, "numberofcreditsspentonfacerecognit": 35, "hasactiveawscontract": 35, "subscriptiontyp": 35, "subscriptionperiod": 35, "ccemail": 35, "remainingcredit": 35, "userdata": 35, "still": [35, 43, 51, 57, 71, 81, 100, 102], "mock": 35, "img_8277": [35, 37], "1120": 35, "scan_document_url": 35, "api_email": 35, "api_kei": [35, 53, 69], "eckero": 37, "ocr_text": 37, "nanolib": 37, "predict_fil": 37, "file_to_scan": 37, "get_tables_from_prediction_result": 37, "rpatabl": 37, "create_t": [37, 43, 93], "get_all_model": 37, "model_id": 37, "ocr_fulltext": 37, "fulltext": 37, "pagenum": 37, "enumer": [37, 63], "pagedata": 37, "raw_text": 37, "page_data": 37, "categor": 37, "docu": 37, "vault_token_kei": [39, 102], "tenant": [39, 41, 63, 102], "ew": 39, "articl": [39, 59, 102], "email_oauth_microsoft": 39, "ztzvn": 39, "onmicrosoft": 39, "account_nam": [39, 41, 71, 85], "recipient_address": [39, 41], "is_oauth": [39, 41, 102], "flow": [39, 41, 61, 63, 102], "client_id": [39, 41, 61, 63], "client_secret": [39, 41, 61, 63], "refresh": [39, 41, 53, 57, 61, 63, 91, 98, 102], "br": 39, "email_address": 39, "bcc": [39, 41, 71, 102], "save_dir": [39, 102], "savedir": 39, "inbox": [39, 41, 71], "sub1": 39, "criterion": [39, 41, 71, 102], "savedir2": 39, "purchas": [39, 57], "sub2": 39, "ex_account": 39, "forget": [39, 45, 102], "subject_contain": 39, "body_contain": 39, "sender_contain": [39, 102], "categori": 39, "category_contain": 39, "timeformat": 39, "25": [39, 45, 87], "2021": 39, "23": [39, 59, 87], "to_protect": [39, 41], "get_oauth_token": [39, 41, 61, 83], "refresh_oauth_token": [39, 41, 61, 63, 83], "autodiscov": [39, 102], "access_typ": [39, 61, 102], "accesstyp": 39, "deleg": [39, 102], "primary_smtp_address": 39, "skip": [39, 87, 102], "imperson": [39, 91, 102], "expiri": 39, "create_fold": [39, 41], "delete_fold": [39, 41], "empty_fold": 39, "delete_sub_fold": 39, "forward_messag": 39, "forward": [39, 98, 102], "generate_oauth_url": [39, 41, 61], "sensit": [39, 41, 43, 53, 61, 102], "auth_url": [39, 41, 61], "810482312368": [39, 41, 61], "19htmcgcj": [39, 41, 61], "googleusercont": [39, 41, 61], "response_url": [39, 41, 61], "gocspx": [39, 41, 61], "mqzaw89": [39, 41, 61], "resp_url": [39, 41, 61], "redirect": [39, 41, 51, 61, 63], "items_onli": [39, 102], "list_unread_messag": 39, "unread": [39, 41, 71, 102], "move_messag": [39, 41], "changekei": 39, "priority_account": 39, "prioriti": [39, 71], "1h": [39, 41, 61], "never": [39, 41, 61], "revok": [39, 41, 61], "rename_fold": [39, 41], "oldnam": [39, 41], "newnam": [39, 41], "save_attach": [39, 41, 71], "attachments_from_eml": 39, "eml": [39, 41, 102], "robot_artifact": [39, 75], "save_messag": [39, 41], "reply_to": [39, 41, 71, 102], "repli": [39, 41, 71, 102], "send_reply_messag": 39, "reply_al": 39, "verifi": [39, 51, 53, 55, 98, 102], "hh": 39, "datetime_receiv": 39, "came": 39, "total": [39, 41, 43, 71, 83, 102], "agre": 39, "wait_for_messag": [39, 41], "arriv": [39, 41, 71], "AS": [39, 81, 100], "OF": 39, "smtp_server": 41, "smtp_port": [41, 102], "587": [41, 67, 102], "imap_serv": 41, "imap_port": [41, 102], "993": 41, "oauthprovid": 41, "answer": 41, "185833": 41, "hl": 41, "xoauth2": [41, 102], "highli": [41, 102], "mistak": 41, "gmail_account": 41, "gmail_password": 41, "app_password": 41, "body_img1": 41, "imagedir": 41, "approv": [41, 71, 91], "body_img2": 41, "email_bodi": 41, "authorize_imap": 41, "authorize_smtp": 41, "set_credenti": [41, 75], "generate_oauth_str": 41, "add_gmail_label": 41, "source_fold": [41, 71], "customer1": 41, "wip": 41, "customerfold": 41, "Will": [41, 45, 59, 87, 102], "convert_eml_file_into_messag": 41, "eml_filepath": 41, "save_attachments_directori": 41, "body_text": 41, "body_html": 41, "aboutth": 41, "exactli": [41, 57], "greet": 41, "do_message_act": 41, "msg_copi": 41, "msg_delet": 41, "msg_flag": 41, "msg_unflag": 41, "msg_read": 41, "msg_unread": 41, "msg_save": 41, "msg_attachment_sav": 41, "glabel_add": 41, "glabel_remov": 41, "actions_don": 41, "message_count": 41, "uid": [41, 102], "xxx": 41, "email_to_docu": 41, "input_sourc": 41, "binaryio": 41, "docx": [41, 100, 102], "mail_fil": 41, "pathlib": 41, "lib_work": 41, "lib_mail": 41, "convert_email_to_docx": 41, "get_input_work_item": [41, 81], "get_work_item_fil": [41, 81], "flag_messag": 41, "unflag": [41, 102], "oftot": 41, "access_token": [41, 53, 91, 96], "pack": 41, "legaci": [41, 43, 45, 102], "get_decoded_email_bodi": 41, "html_first": 41, "imaplib": 41, "printabl": 41, "latin": 41, "priorit": 41, "unicod": [41, 98, 102], "tell": 41, "get_folder_list": 41, "readonli": [41, 102], "deliv": 41, "mark_as_read": [41, 71], "mark_as_unread": 41, "yyi": 41, "move_messages_by_id": 41, "use_gmail_search": 41, "rfc822msgid": 41, "remove_gmail_label": 41, "unlabel": [41, 53], "silenc": 41, "userdir": 41, "select_fold": 41, "attachment_posit": [41, 102], "attachmentposit": 41, "in_reply_to": [41, 102], "return_path": [41, 102], "message_id_for_reply_to": 41, "bounc": 41, "tend": 41, "need_to_know": 41, "hidden_copi": 41, "send_smtp_hello": 41, "unflag_messag": 41, "mailbox": [41, 63, 71], "workbook": [43, 45, 65, 81, 102], "sheetnam": [43, 91, 102], "stuff": [43, 85], "macro": [43, 45, 102], "orders_with_macro": 43, "xlsm": 43, "commandbutton1_click": 43, "open_workbook": [43, 45, 102], "set_active_worksheet": [43, 45], "write_to_cel": 43, "save_excel": 43, "caveat": [43, 71, 98, 100], "autoexit": [43, 71, 100, 102], "self": [43, 71, 83, 100], "worker": [43, 71, 100, 102], "rdp": [43, 71, 100], "tick": [43, 71, 100, 102], "encount": [43, 71, 81, 98, 100], "potenti": [43, 55, 71, 100], "unattend": [43, 61, 71, 75, 81, 100, 102], "2016": [43, 71, 100], "app_dispatch": [43, 71, 100], "add_new_sheet": 43, "create_workbook": [43, 45], "add_new_workbook": 43, "close_docu": [43, 71, 100], "save_chang": [43, 71, 100], "create_pivot_field": 43, "data_column": 43, "numberformat": 43, "pivotfield": 43, "pivot": [43, 102], "distinct": 43, "resolv": [43, 47, 98, 102], "regard": [43, 81, 102], "field_count": 43, "price": [43, 59, 85, 93], "field_avg": 43, "averag": 43, "field_sum": 43, "field_max": 43, "create_pivot_t": 43, "source_worksheet": 43, "pivot_worksheet": 43, "sort_field": 43, "sort_direct": 43, "data_rang": 43, "pivot_nam": 43, "pivottable1": 43, "collapse_row": 43, "show_grand_tot": 43, "product": [43, 53, 85, 93], "expense_typ": 43, "pivott": 43, "r5c5": 43, "r1c1": 43, "numb": 43, "ascend": [43, 59, 71, 93], "collaps": 43, "grand": 43, "table_nam": [43, 45], "table_rang": 43, "export_as_pdf": 43, "pdf_filenam": 43, "excel_filenam": 43, "search_str": [43, 63], "search_rang": 43, "search_ord": 43, "searchord": 43, "match_cas": 43, "search_typ": [43, 102], "search_aft": 43, "asterisk": 43, "seri": 43, "145": 43, "ip": 43, "e1": 43, "e9999": 43, "addr": 43, "192": 43, "168": 43, "borderaround": 43, "a9999": 43, "new_valu": [43, 71, 100], "comment": [43, 91], "find_first_available_cel": 43, "free": [43, 53, 102], "find_first_available_row": 43, "get_pivot_t": 43, "pivot_table_nam": 43, "as_list": [43, 93], "pivot_t": 43, "tbl_name": 43, "tbl_list": 43, "get_rang": 43, "b2": [43, 45], "e4": 43, "c4": 43, "d4": [43, 45], "destin": [43, 47, 63, 81], "e5": 43, "e10": [43, 45], "a4": 43, "list_tabl": 43, "merge_rang": 43, "initial_rang": 43, "display_alert": [43, 71, 100], "read_from_cel": 43, "remove_hidden_columns_and_row": 43, "run_macro": 43, "macro_nam": 43, "save_excel_a": 43, "autofit": 43, "file_format": 43, "vba": [43, 71], "xlfileformat": 43, "modern": [43, 45, 59, 102], "97": [43, 87, 102], "56": 43, "sheetnumb": 43, "set_object_properti": [43, 71, 100], "object_inst": [43, 71, 100], "property_nam": [43, 53, 71, 100], "132": [43, 71, 100], "5511": [43, 71, 100], "unmerge_rang": 43, "unmerg": [43, 102], "write_data_to_rang": 43, "target_rang": 43, "log_warn": 43, "semicolon": 43, "read_table_from_csv": [43, 93], "csv": [43, 71, 75, 81, 93, 102], "xslx": [43, 71], "a2": [43, 45], "p100": 43, "input_t": 43, "l21": 43, "c2": 43, "e21": 43, "g2": 43, "i21": 43, "suppress": [43, 102], "number_format": [43, 45], "protect": [45, 83, 102], "iter": [45, 47, 75, 93, 102], "orders_fil": 45, "excel_fil": 45, "my_new_excel": 45, "append": [45, 47, 51, 59, 65, 91, 93, 102], "read_excel_worksheet": 45, "read_worksheet": 45, "close_workbook": 45, "append_rows_to_worksheet": 45, "formatting_as_empti": [45, 102], "sara": 45, "beth": 45, "ami": [45, 93], "table_ag": 45, "57": 45, "save_workbook": 45, "auto_size_column": 45, "start_column": 45, "end_column": 45, "font": [45, 102], "auto_s": 45, "clear_cell_rang": 45, "range_str": 45, "a9": 45, "a100": 45, "b50": 45, "copy_cell_valu": 45, "source_rang": 45, "g10": 45, "fmt": 45, "xlsworkbook": 45, "xlsxworkbook": 45, "newli": [45, 53, 63, 81, 102], "upon": 45, "mycustomsheetnam": 45, "create_worksheet": 45, "exist_ok": [45, 47, 102], "dictonari": 45, "employees_row1": 45, "58": [45, 93], "employees_row2": 45, "employees_row3": 45, "adam": [45, 93], "67": [45, 93], "worksheet_data": 45, "worksheet_data_row1": 45, "worksheet_data_row2": 45, "worksheet_data_row3": 45, "employe": [45, 93], "workseet": 45, "employees_nam": 45, "employees_ag": 45, "worksheet_data_nam": 45, "worksheet_data_ag": 45, "delete_column": 45, "delete_row": 45, "jj": 45, "find_empty_row": 45, "get_active_worksheet": 45, "active_worksheet": 45, "get_cell_valu": [45, 87], "column3": 45, "get_worksheet_valu": 45, "hide_column": 45, "insert_columns_aft": 45, "insert_columns_befor": 45, "insert_image_to_worksheet": 45, "factor": [45, 57, 60, 102], "last_row": 45, "insert_rows_aft": 45, "insert_rows_befor": 45, "list_worksheet": 45, "declar": [45, 85], "workset": 45, "move_rang": 45, "openpyxl": 45, "neg": [45, 93, 100], "e2": 45, "data_onli": [45, 102], "read_onli": [45, 100, 102], "read_worksheet_as_t": 45, "trim": [45, 93, 102], "remove_worksheet": 45, "rename_worksheet": 45, "src_name": 45, "dst_name": 45, "futur": [45, 53, 63, 81, 98], "cannot": [45, 53, 59, 81, 87, 91, 102], "vice": 45, "versa": 45, "per": [45, 53, 91, 93], "basi": [45, 69], "bege": 45, "set_cell_format": 45, "themselv": [45, 98], "libreoffic": 45, "aforement": [45, 59], "explan": 45, "set_cell_formula": 45, "transpos": 45, "e3": 45, "b3": 45, "set_cell_valu": [45, 87], "start_cel": 45, "table_head": [45, 93], "all_row": 45, "fourth": 45, "g1": 45, "uncom": 45, "m1": 45, "simplest": [45, 59], "set_styl": 45, "font_nam": 45, "famili": 45, "bold": 45, "ital": 45, "underlin": 45, "strikethrough": 45, "cell_fil": 45, "align_horizont": 45, "align_vert": 45, "justifi": 45, "centercontinu": 45, "distribut": 45, "0_": 45, "00e": 45, "am": [45, 75], "pm": 45, "ss": [45, 91], "hex": 45, "align": [45, 102], "lightblu": 45, "ff0000": 45, "arial": 45, "set_worksheet_valu": 45, "unhide_column": 45, "unhid": 45, "worksheet_exist": 45, "does_worksheet_exist": 45, "move_to_arch": 47, "find_fil": 47, "create_directori": 47, "move_fil": 47, "path_typ": 47, "absolute_path": 47, "symlink": 47, "append_to_binary_fil": 47, "append_to_fil": 47, "change_file_extens": 47, "copy_directori": 47, "copy_fil": 47, "create_binary_fil": 47, "fe88505b6162b2538a045c": 47, "2017": [47, 51], "file_example_jpg_100kb": 47, "create_fil": 47, "written": [47, 59, 83], "newfil": 47, "does_directory_exist": 47, "does_directory_not_exist": 47, "directory_exist": 47, "does_file_exist": 47, "log_exist": 47, "does_file_not_exist": 47, "empty_directori": 47, "include_dir": 47, "include_fil": 47, "get_file_creation_d": 47, "whenev": [47, 81], "get_file_extens": 47, "suffix": 47, "get_file_modified_d": 47, "get_file_nam": 47, "get_file_own": 47, "get_file_s": 47, "get_file_stem": 47, "is_directory_empti": 47, "directory_empti": 47, "new_fil": 47, "is_directory_not_empti": 47, "is_file_empti": 47, "is_file_not_empti": 47, "file_empti": 47, "alt_dir": 47, "join_path": 47, "compon": [47, 102], "ext": [47, 81, 102], "nest": [47, 51, 59], "list_directories_in_directori": 47, "list_files_in_directori": 47, "log_directory_tre": 47, "tree": [47, 57, 98, 102], "move_directori": 47, "normalize_path": 47, "redund": 47, "normalized_path": 47, "read_binary_fil": 47, "pictur": [47, 69], "read_fil": 47, "remove_directori": 47, "remove_fil": 47, "run_keyword_if_file_exist": 47, "touch_fil": 47, "touch": 47, "wait_until_cr": 47, "wait_until_modifi": 47, "wait_until_remov": 47, "ftplib": 49, "27345": 49, "12345": 49, "transfer": 49, "unilater": 49, "tl": [49, 51, 67, 102], "passiv": 49, "keyfil": 49, "certfil": 49, "source_address": 49, "certif": [49, 51, 102], "socket": [49, 102], "bind": [49, 102], "authenticationexcept": 49, "connnect": 49, "cwd": [49, 57], "dirnam": [49, 81], "remotefil": 49, "localfil": 49, "file_s": 49, "get_welcome_messag": 49, "mkd": 49, "pwd": 49, "fromnam": 49, "tonam": 49, "rmd": 49, "send_command": 49, "wikipedia": [49, 67], "list_of_ftp_command": 49, "set_ascii_mod": 49, "ascii": [49, 102], "set_binary_mod": 49, "set_debug_level": 49, "moder": 49, "requestslibrari": [51, 102], "default_retry_method_list": 51, "trace": 51, "check_vulner": 51, "vulner": [51, 102], "runtim": [51, 102], "openssl": [51, 102], "discov": [51, 59], "create_client_cert_sess": 51, "client_cert": 51, "max_retri": 51, "backoff_factor": 51, "disable_warn": 51, "retry_status_list": 51, "retry_method_list": 51, "map": [51, 59, 81, 85, 93, 98, 102], "3128": 51, "4012": 51, "cert": 51, "ca_bundl": [51, 102], "verbos": [51, 102], "httplib": 51, "httpconnect": 51, "set_debuglevel": 51, "retri": [51, 75, 81, 91, 102], "kind": [51, 102], "regardless": 51, "testcas": 51, "introduc": [51, 61], "eg": 51, "attemp": 51, "urllib3": 51, "readthedoc": [51, 67], "uppercas": 51, "verb": 51, "idempot": 51, "502": [51, 102], "503": 51, "create_custom_sess": 51, "create_digest_sess": 51, "ntlm": 51, "create_ntlm_sess": 51, "create_sess": 51, "delete_all_sess": 51, "delete_on_sess": 51, "expected_statu": 51, "delete_request": 51, "allow_redirect": 51, "cach": [51, 91, 102], "force_new_sess": 51, "stream": [51, 75, 102], "download_path": [51, 91], "word_exampl": 51, "wp": 51, "sample_100kb": 51, "excel_exampl": 51, "file_example_xls_10": 51, "reus": [51, 102], "verif": [51, 102], "immedi": [51, 102], "get_current_session_alia": 51, "get_file_for_streaming_upload": 51, "descriptor": [51, 91], "caller": 51, "get_on_sess": 51, "get_request": 51, "urlencod": 51, "head_on_sess": 51, "oppos": 51, "head_request": 51, "http_get": 51, "old": [51, 69, 100, 102], "scheme": [51, 102], "options_on_sess": 51, "options_request": 51, "patch_on_sess": 51, "patch_request": 51, "post_on_sess": 51, "post_request": 51, "multipart": 51, "put_on_sess": 51, "put_request": 51, "request_should_be_success": 51, "4xx": 51, "5xx": 51, "httperror": 51, "versatil": 51, "session_exist": 51, "session_less_delet": 51, "session_less_get": 51, "serializ": [51, 59, 81], "cookiejar": 51, "fileobj": 51, "content_typ": 51, "custom_head": 51, "ca": 51, "offici": [51, 83, 102], "session_less_head": 51, "session_less_opt": 51, "session_less_patch": 51, "session_less_post": 51, "session_less_put": 51, "status_should_b": 51, "But": [51, 57, 59], "bad": 51, "404": 51, "resp": 51, "notfound": 51, "NOT": [51, 57, 87, 98], "to_json": 51, "pretty_print": 51, "pretti": 51, "update_sess": 51, "hubspot_apikei": 53, "hubspot_access_token": 53, "understand": 53, "millisecond": [53, 87], "result_format": [53, 55, 69], "multipli": [53, 98], "nearest": 53, "integar": [53, 91], "yesterdai": 53, "24h": 53, "yesterday_hs_t": 53, "deal": [53, 57], "hs_lastmodifiedd": 53, "gte": 53, "get_current_d": 53, "subtract_time_from_d": 53, "search_for_object": 53, "wish": 53, "finland": [53, 85], "new_compani": 53, "batchinputfactori": 53, "batchmod": 53, "robocorpvault": 53, "extend_input": 53, "citi": 53, "espoo": [53, 85], "alphabet": 53, "mountain": 53, "1001": 53, "1002": 53, "batch_input": 53, "updated_compani": 53, "execute_batch": 53, "n": [53, 59, 65, 87], "recal": 53, "use_cach": [53, 91], "object_typ": [53, 85], "singular": 53, "plural": 53, "rather": 53, "account_nokia": [53, 85], "6818764598": 53, "nokia_account_id": [53, 85], "get_object": 53, "whose": [53, 96], "created_at": 53, "updated_at": 53, "archived_at": 53, "deals_to_compani": 53, "multi": [53, 60, 63, 102], "travel": 53, "readabel": 53, "stage": [53, 85], "display_ord": 53, "th": 53, "sale": 53, "first_nam": 53, "last_nam": 53, "team": 53, "membership": 53, "secondari": 53, "builtin_plural_map": 53, "contact": 53, "submiss": 53, "feadback": 53, "ticket": 53, "builtin_singular_map": 53, "add_input_to_batch": 53, "object_id": [53, 85], "auth_with_api_kei": 53, "wide": 53, "auth_with_token": [53, 85], "clear_current_batch": 53, "create_new_batch": 53, "create_object": 53, "nonexist": 53, "paremet": 53, "extend_batch_with_input": 53, "get_current_batch": 53, "get_current_batch_input": 53, "get_current_stage_of_object": 53, "id_properti": 53, "label_as_kei": 53, "hupspot": 53, "recach": 53, "get_owner_by_id": 53, "owner_id": 53, "owner_email": 53, "provis": 53, "get_owner_of_object": 53, "hs_object": 53, "owner_properti": 53, "hubspot_owner_id": 53, "get_pipelin": 53, "pipeline_id": 53, "discreet": 53, "accessess": 53, "comprehens": 53, "concept": 53, "step_on": 53, "visib": 53, "get_pipeline_stag": 53, "isclos": 53, "closed_won_stage_id": 53, "dealstag": 53, "eq": 53, "get_us": 53, "user_email": 53, "list_associ": 53, "to_object_typ": 53, "contact_to_compani": 53, "list_pipelin": 53, "unarchiv": 53, "objectschema": 53, "natural_search": 53, "string_queri": 53, "record": [53, 65, 73, 87, 98, 102], "AND": [53, 98], "OR": [53, 59, 77, 79, 81, 98], "lt": 53, "lte": 53, "gt": 53, "neq": 53, "not_in": 53, "has_properti": 53, "opposit": 53, "not_has_properti": 53, "contains_token": 53, "not_contains_token": 53, "alic": 53, "smith": 53, "enum1": 53, "caten": [53, 81], "proeprti": 53, "filtergroup": 53, "logic": 53, "combination_search": 53, "propertynam": 53, "pseudo": 53, "seach": 53, "search_object": 53, "searchabl": 53, "set_associ": 53, "to_object_id": 53, "association_typ": 53, "company_to_contact": 53, "set_current_batch_input": 53, "update_object": 53, "upper": 55, "increas": [55, 91, 102], "toward": 55, "pillow": [55, 102], "robust": 55, "numpi": [55, 102], "opencv": [55, 102], "opt": [55, 57], "imagenotfounderror": 55, "desktop_": 55, "draw_matches_on_imag": 55, "find_template_in_imag": 55, "show_region_in_imag": 55, "crop_imag": 55, "significantli": [55, 102], "get_pixel_color_in_imag": 55, "pil": 55, "onto": 55, "ignore_callback": [57, 102], "access_bridge_path": [57, 102], "max_depth": [57, 102], "disable_refresh": [57, 102], "bridg": [57, 102], "technologi": 57, "juli": [57, 102], "27": [57, 87], "insight": [57, 98], "Then": 57, "rc_java_access_bridge_dl": 57, "windowsaccessbridg": 57, "dll": [57, 102], "jabswitch": 57, "situat": [57, 98], "regular": [57, 102], "bring": 57, "numberfield": 57, "startswith": 57, "type1": 57, "javael": [57, 102], "contextnod": 57, "java_el": [57, 102], "node": [57, 59, 87], "javaobject": 57, "ancestri": 57, "states_str": 57, "col": 57, "column_count": 57, "visible_children": 57, "visible_children_count": 57, "index_in_par": 57, "swing": [57, 102], "jar": 57, "basicsw": 57, "shell": [57, 87, 102], "chat": [57, 67, 69, 102], "subprocess": [57, 102], "jab": [57, 102], "popen": 57, "close_fd": 57, "select_window": 57, "click_el": [57, 87], "application_refresh": 57, "call_element_act": 57, "click_coordin": 57, "click_push_button": 57, "button_nam": 57, "close_java_window": 57, "get_element_act": 57, "get_element_text": 57, "butto": 57, "moretext": 57, "get_locator_tre": 57, "mostli": 57, "indexinpar": [57, 102], "get_version_info": 57, "list_java_window": 57, "javawindow": 57, "hwnd": 57, "window_list": 57, "select_window_by_pid": 57, "len": [57, 59, 81, 91], "simultan": 57, "print_element_tre": 57, "print_locator_tre": 57, "read_tabl": 57, "visible_onli": [57, 102], "locator_t": 57, "refresh_el": 57, "thu": [57, 102], "big": [57, 63, 102], "select_menu": 57, "bring_foreground": 57, "brought": 57, "foreground": 57, "select_window_by_titl": 57, "set_display_scale_factor": 57, "set_mouse_posit": 57, "shutdown_jab": 57, "shutdown": 57, "toggle_drop_down": 57, "toggl": 57, "dropdown": [57, 87], "wait_until_element_exist": 57, "wait_until_element_is_focus": 57, "wait_until_element_text_contain": 57, "wait_until_element_text_equ": 57, "interchang": 59, "inspir": 59, "subset": 59, "facto": 59, "agnost": 59, "easili": [59, 93, 102], "arrai": [59, 85, 91], "quickli": 59, "flavor": 59, "ng": 59, "analog": 59, "johnni": 59, "streetroad": 59, "103": 59, "98": 59, "99": [59, 93], "jane": 59, "waypath": 59, "321": 59, "2330": 59, "come": [59, 67, 102], "deliveri": 59, "cost": 59, "expens": 59, "wilcard": 59, "slice": [59, 93, 102], "substitut": 59, "arithmet": 59, "encapsul": [59, 102], "backtick": 59, "sai": 59, "book": 59, "genr": 59, "horror": 59, "young": 59, "adult": 59, "repl": [59, 102], "char": [59, 102], "segment": 59, "max_split": 59, "concaten": 59, "multitud": 59, "seen": [59, 102], "individu": [59, 81, 93], "add_to_json": 59, "expr": 59, "peopl": 59, "j": 59, "convert_string_to_json": 59, "convert_json_to_str": 59, "obj": 59, "builtin": [59, 83, 93], "should_be_equ": 59, "delete_from_json": 59, "get_value_from_json": 59, "ingest": 59, "json_str": 59, "tx": 59, "001": [59, 69], "002": 59, "003": [59, 69], "004": 59, "152": 59, "005": 59, "json_doc": 59, "noutput": 59, "get_values_from_json": 59, "simplist": 59, "za": 59, "texa": 59, "load_json_from_fil": 59, "scalar": 59, "save_json_to_fil": 59, "indent": [59, 85, 102], "update_value_to_json": 59, "johnmalkovich": 59, "updated_doc": 59, "nnew": 59, "new_email": 59, "charg": 59, "id_pric": 59, "order_id": 59, "one_pric": 59, "counter": [60, 61, 102], "vault_kei": 61, "otpmod": 61, "intend": 61, "late": 61, "pyotp": 61, "requests_oauthlib": 61, "passcod": 61, "otpsecret": 61, "qr": 61, "mobil": 61, "phone": 61, "duplic": [61, 102], "get_time_based_otp": 61, "redirect_uri": [61, 63], "arbitrari": [61, 102], "oauthlib": [61, 102], "consent": 61, "offlin": 61, "oauthplayground": 61, "prompt": [61, 69, 102], "grant": [61, 63, 102], "lib_mfa": 61, "get_counter_based_otp": 61, "otp_passcod": 61, "token_url": 61, "oauth2sess": 61, "refresh_token": [61, 63], "guarante": 61, "constant": [61, 91, 102], "set_counter_based_otp": 61, "set_time_based_otp": 61, "use_mfa_secret_from_vault": 61, "o365": [62, 63, 102], "abil": [62, 63, 68, 102], "graph": [62, 63, 102], "programmat": [62, 63, 68, 98, 102], "vault_backend": 63, "vault_secret": 63, "file_backend_path": 63, "windowspath": 63, "openid": 63, "expos": [63, 81, 102], "behalf": 63, "bot": 63, "microsoftonlin": 63, "nativecli": 63, "organiz": 63, "authorize_and_get_token": 63, "authorization_url": 63, "configure_msgraph_cli": 63, "create_sharepoint_list": 63, "list_data": 63, "sharepointlist": 63, "sharepoint": [63, 102], "download_file_from_onedr": 63, "to_path": 63, "onedr": 63, "driveitem": 63, "download_file_from_share_link": 63, "share_url": 63, "download_file_from_sharepoint": 63, "download_folder_from_onedr": 63, "caution": 63, "find_onedrive_fil": 63, "include_fold": 63, "across": 63, "generate_oauth_authorization_url": 63, "get_drive_inst": 63, "drive_id": [63, 102], "get_file_inst": 63, "reobtain": 63, "get_folder_inst": 63, "get_items_from_sharepoint_list": 63, "list_nam": 63, "get_m": [63, 96], "get_scop": 63, "mailbox_shar": 63, "message_send": 63, "message_send_shar": 63, "message_al": 63, "message_all_shar": 63, "address_book": 63, "address_book_shar": 63, "address_book_al": 63, "address_book_all_shar": 63, "calendar_shar": 63, "calendar_al": 63, "calendar_shared_al": 63, "onedrive_al": 63, "sharepoint_dl": 63, "settings_al": 63, "tasks_al": 63, "presenc": 63, "get_sharepoint_sit": 63, "list_files_in_onedrive_fold": 63, "list_files_in_sharepoint_site_dr": 63, "list_sharepoint_site_dr": 63, "search_for_us": 63, "search_field": 63, "displaynam": 63, "upload_file_to_onedr": 63, "suitetalk": [64, 65], "soap": 65, "netsuitesdk": 65, "webservic": 65, "account_typ": 65, "_expens": 65, "netsuite_account": 65, "bill": 65, "vendor": 65, "netsuite_bil": 65, "consumer_kei": [65, 85, 96], "consumer_secret": [65, 85, 96], "token_kei": 65, "token_secret": 65, "get_account": 65, "currenc": 65, "get_curr": 65, "ns_account": 65, "ns_consumer_kei": 65, "ns_consumer_secret": 65, "ns_token_kei": 65, "ns_token_secret": 65, "get_classif": 65, "classif": 65, "currency_id": 65, "get_depart": 65, "depart": 65, "get_loc": 65, "get_vendor_bil": 65, "get_vendor": 65, "ns_email": 65, "ns_password": 65, "ns_role": 65, "ns_appid": 65, "netsuite_get": 65, "record_typ": 65, "internal_id": 65, "internalid": 65, "externalid": 65, "netsuite_get_al": 65, "netsuite_search": 65, "type_nam": 65, "search_valu": 65, "page_s": 65, "paginatedsearch": 65, "netsuite_search_al": 65, "interfact": 67, "pushov": [67, 102], "telegram": 67, "twilio": 67, "gitter": 67, "mailgun": 67, "pagerduti": 67, "popcornnotifi": 67, "pushbullet": 67, "simplepush": 67, "statuspag": 67, "zulip": 67, "provider_nam": 67, "room_id": 67, "id_of_the_gitter_room": 67, "office365": 67, "account_usernam": 67, "account_password": 67, "recipient_email": 67, "from_": 67, "sender_address": 67, "email_usernam": 67, "email_password": 67, "email_notifi": 67, "sender_email": 67, "slack_webhook": 67, "webhookdetail": 67, "webhook_url": [67, 89], "slack_attach": 67, "liverpool": 67, "wikimedia": 67, "cd": 67, "liverpool_fc": 67, "n_logo": 67, "1200px": 67, "notify_slack": 67, "slack_webhook_url": 67, "generic_notifi": 67, "notify_email": 67, "recipient_email_address": 67, "outlook_usernam": 67, "outlook_password": 67, "notify_gmail": 67, "notify_pushov": 67, "webhook": [67, 75, 89], "notify_telegram": 67, "chat_id": 67, "notify_twilio": 67, "number_from": 67, "number_to": 67, "account_sid": 67, "sid": 67, "secret_nam": [69, 77, 79], "taglin": 69, "ic": 69, "cream": 69, "shop": 69, "temperatur": 69, "authorize_to_openai": 69, "completion_cr": 69, "icecream": 69, "authorize_to_azure_openai": 69, "api_bas": 69, "api_typ": 69, "api_vers": 69, "azureopenai": 69, "chat_completion_cr": 69, "user_cont": 69, "gpt": [69, 102], "turbo": 69, "system_cont": 69, "top_prob": 69, "frequency_penalti": 69, "presence_penalti": 69, "chatgpt": [69, 102], "histori": [69, 91], "deployment_nam": 69, "deploy": 69, "mygpt4deploy": 69, "risk": 69, "nucleu": 69, "top_p": 69, "mass": 69, "penal": 69, "frequenc": 69, "far": 69, "chatgpt_convers": 69, "biggest": 69, "mammal": 69, "davinci": 69, "max_token": 69, "256": [69, 102], "mydavinci3deploy": 69, "divers": 69, "half": [69, 81], "likelihood": 69, "weight": 69, "image_cr": 69, "512x512": 69, "num_imag": 69, "256x256": 69, "1024x1024": 69, "cartoon": 69, "cute": 69, "monkei": [69, 75], "skateboard": 69, "image_create_vari": 69, "src_imag": 69, "variat": [69, 102], "4mb": 69, "source_imag": 69, "coupl": 71, "email_filt": 71, "senderemailaddress": 71, "send_email": 71, "emailaddress_1": 71, "emailaddress_2": 71, "2007": [71, 102], "bb219950": 71, "v": [71, 87, 98, 102], "get_email": 71, "attachment_fold": 71, "sort_kei": 71, "sort_descend": 71, "email_fold": 71, "incom": 71, "mark_email_as_read": 71, "move_email": 71, "save_email_attach": 71, "100000": 71, "html_bodi": 71, "save_as_draft": [71, 102], "cc_recipi": 71, "bcc_recipi": 71, "check_nam": [71, 102], "draft": 71, "recipient3": 71, "recipient4": 71, "recipient1": 71, "cc_repient": 71, "bcc_repient": 71, "recipient5": 71, "recipient6": 71, "wait_for_email": 71, "watermark": [73, 102], "therefor": [73, 81, 87], "accur": 73, "pain": 73, "use_appearances_writ": 73, "extract_data_from_first_pag": 73, "get_text_from_pdf": 73, "get_lines_matching_regexp": 73, "get_invoice_numb": 73, "open_pdf": 73, "find_text": [73, 100], "fill_form_field": 73, "switch_to_pdf": 73, "get_input_field": 73, "set_field_valu": 73, "save_field_valu": 73, "workspace_id": 75, "process_id": 75, "workspace_api_kei": 75, "cr": 75, "rc_api_process_host": [75, 102], "workforc": 75, "processapi": 75, "item1": 75, "fname": 75, "item2": 75, "work_item": 75, "workdata": 75, "item_id": [75, 81, 87], "config_typ": 75, "extra_info": 75, "artifact": [75, 102], "filematch": 75, "process_run_id": 75, "processrunid": 75, "step_run_id": [75, 102], "activityrunid": 75, "download_link": 75, "artifact_id": 75, "retry_failed_item": 75, "list_process_work_item": 75, "retry_work_item": 75, "download_artifacts_match": 75, "list_run_artifact": 75, "get_robot_run_artifact": 75, "target_filepath": 75, "getenv": 75, "base_api": 75, "create_input_work_item": 75, "get_process_id_by_nam": 75, "workspac": [75, 77, 79, 91], "get_process_run_statu": 75, "get_work_item": 75, "workitem_id": 75, "include_data": 75, "list_process_run_work_item": 75, "item_st": 75, "list_process_run": 75, "run_stat": 75, "list_process_runs_in_workspac": 75, "list_process": 75, "process_api": 75, "register_file_upload": 75, "workitem_filenam": 75, "work_item_id": 75, "set_apikei": 75, "set_process_id": 75, "set_workspace_id": 75, "start_configured_process": 75, "configurationtyp": 75, "start_process": 75, "upload_file_to_s3": 75, "workspace_api": 75, "taken": [77, 79], "rcc": [77, 79], "fashion": [77, 79], "rc_api_secret_host": [77, 79], "rc_api_secret_token": [77, 79], "rc_workspace_id": [77, 79], "rpa_secret_manag": [77, 79], "rpa_secret_fil": [77, 79], "swaglab": [77, 79], "standard_us": [77, 79], "secret_sauc": [77, 79], "nobodi": [77, 79], "reading_secret": [77, 79], "modifying_secret": [77, 79], "set_secret": [77, 79], "autoload": [81, 102], "default_adapt": 81, "baseadapt": 81, "robocorpadapt": 81, "auto_parse_email": 81, "__mail": 81, "parsedemail": [81, 102], "rawemail": 81, "treat": 81, "truthi": 81, "transform": 81, "attend": [81, 102], "world": 81, "behaviour": [81, 83, 85, 98, 102], "alter": [81, 98], "back": [81, 83, 98], "defer": 81, "rpa_workitems_adapt": 81, "fileadapt": [81, 102], "variable1": 81, "variable2": 81, "adjac": [81, 102], "rpa_output_workitem_path": [81, 102], "simul": [81, 102], "dude": 81, "list_vari": 81, "get_work_item_vari": 81, "email_body_load": 81, "full_load": 81, "robot_listener_api_vers": [81, 83], "active_input": 81, "add_work_item_fil": 81, "clear_work_item": 81, "wi": 81, "save_work_item": 81, "create_output_work_item": 81, "customer_var": 81, "delete_work_item_vari": 81, "for_each_input_work_item": 81, "keyword_or_func": 81, "items_limit": [81, 102], "return_result": [81, 102], "rf": [81, 83, 93], "deplet": 81, "log_payload": 81, "get_work_item_payload": 81, "get_current_work_item": 81, "_internal_cal": 81, "customer_": 81, "keyerror": 81, "guest": 81, "input_wi": 81, "list_work_item_fil": 81, "list_work_item_vari": 81, "release_input_work_item": 81, "exception_typ": 81, "_internal_releas": 81, "lastli": 81, "login_portal_down": 81, "unabl": [81, 93], "err": 81, "doc_format_error": 81, "process_and_set_st": 81, "remove_work_item_fil": 81, "set_current_work_item": 81, "parent_wi": 81, "child_wi": 81, "set_task_variables_from_work_item": 81, "input_url": 81, "set_work_item_payload": 81, "set_work_item_vari": 81, "markymark": 81, "appl": 81, "listen": 83, "mute": [83, 98, 102], "cours": [83, 102], "optional_keyword_to_run": 83, "xyz": 83, "exit": [83, 102], "robotnotrunningerror": 83, "import_librari": 83, "customlibrari": 83, "__init__": 83, "register_protected_keyword": 83, "special_keyword": 83, "info_level_keyword": 83, "keywords_to_mut": 83, "keywords_to_protect": 83, "robocloud": [83, 102], "end_keyword": 83, "mute_run_on_failur": 83, "only_info_level": 83, "start_keyword": 83, "temporarili": 83, "dataload": 85, "execute_dataloader_import": 85, "mimic": 85, "input_object": 85, "mapping_dict": 85, "tilaus__c": 85, "workdir": 85, "asiaka": 85, "0015i000002jbliqa2": 85, "0015i000002jbldqa2": 85, "mapping_object": 85, "tilaaja__c": 85, "upsert": 85, "salseforc": 85, "update_obj": 85, "ltd": 85, "billingstreet": 85, "bulevard": 85, "api_token": 85, "pprint": 85, "pp": 85, "prettyprint": 85, "sf": 85, "get_salesforce_object_by_id": 85, "billing_inform": 85, "billingc": 85, "billingpostalcod": 85, "01210": 85, "billingcountri": 85, "update_salesforce_object": 85, "add_product_into_opportun": 85, "product_nam": 85, "quantiti": 85, "opportunity_id": 85, "pricebook_nam": 85, "custom_total_pric": 85, "opportun": 85, "pricelist": 85, "auth_with_connected_app": 85, "embed_api_token": 85, "emb": [85, 102], "robocop": 85, "create_new_opportun": 85, "close_d": 85, "opportunity_nam": 85, "stage_nam": 85, "create_salesforce_object": 85, "object_data": 85, "salesforcedatanotandictionari": 85, "delete_salesforce_object": 85, "salesfoc": 85, "describe_salesforce_object": 85, "execute_apex": 85, "apex": [85, 102], "apex_data": 85, "apex_method": 85, "myclass": 85, "getaccount": 85, "0017r00002xmxb1qam": 85, "execute_dataloader_insert": 85, "datahandl": 85, "dataloader_success": 85, "dataloader_error": 85, "get_dataloader_success_t": 85, "get_dataloader_error_t": 85, "get_domain": 85, "get_opportunity_id": 85, "get_pricebook_entri": 85, "pricebook": 85, "get_pricebook_id": 85, "get_products_in_pricelist": 85, "get_salesforce_object_metadata": 85, "read_dictionary_from_fil": 85, "mapping_fil": 85, "salesforce_queri": 85, "sql_string": 85, "salesforce_query_result_as_t": 85, "shorthand": 85, "session_id": 85, "set_account": 85, "account_id": 85, "set_domain": 85, "salsesforc": 85, "set_pricebook": 85, "upsert_salesforce_object": 85, "frankvanderkuur": 87, "sapguilibrari": [87, 102], "logon": 87, "autoit": 87, "wnd": 87, "tbar": 87, "btn": 87, "backslash": [87, 98], "element_id": 87, "click_toolbar_button": 87, "table_id": 87, "button_id": 87, "toolbar": 87, "gridview": [87, 102], "connect_to_existing_connect": 87, "connection_nam": 87, "connect_to_sess": 87, "explicit_wait": 87, "500m": 87, "disable_screenshots_on_error": 87, "doubleclick_el": 87, "column_id": [87, 91], "element_should_be_pres": 87, "element_value_should_b": 87, "expected_valu": 87, "uncheck": [87, 102], "radiobutton": 87, "combobox": 87, "element_value_should_contain": 87, "enable_screenshots_on_error": 87, "focus_and_click": 87, "wait_tim": 87, "adjust": [87, 102], "focus_and_input_text": 87, "generic_click_el": 87, "generic_input_password": 87, "generic_input_text": 87, "row_num": 87, "col_id": 87, "get_element_loc": 87, "get_element_typ": 87, "get_element_type_of_object": 87, "get_row_count": 87, "get_scroll_posit": 87, "get_statusbar_typ": 87, "messagetyp": 87, "statusbar": 87, "sbar": 87, "get_valu": 87, "guibutton": 87, "guititlebar": 87, "guistatusbar": 87, "guitab": 87, "get_window_titl": 87, "input_password": 87, "maximize_window": 87, "sapgui": 87, "open_connect": 87, "press_f1": 87, "pressf1": 87, "press_f4": 87, "pressf4": 87, "run_transact": 87, "unknown": [87, 93, 102], "select_context_menu_item": 87, "menu_or_button_id": 87, "select_from_list_by_label": 87, "select_nod": 87, "tree_id": 87, "node_id": 87, "expand": [87, 102], "tabletreecontrol": 87, "select_node_link": 87, "link_id1": 87, "link_id2": 87, "select_radio_button": 87, "select_table_column": 87, "select_table_row": 87, "tablecontrol": 87, "send_vkei": 87, "vkey_id": 87, "virtual": [87, 98], "vkei": 87, "f2": [87, 98], "72": 87, "f3": [87, 98], "74": 87, "f5": [87, 98], "75": 87, "f6": [87, 98], "76": 87, "del": [87, 98], "f7": [87, 98], "77": 87, "Ins": 87, "f8": [87, 98], "78": [87, 102], "f9": [87, 98], "79": 87, "34": [87, 102], "f10": [87, 98], "80": 87, "f11": [87, 98], "81": 87, "36": 87, "f12": [87, 98], "82": 87, "37": 87, "38": [87, 102], "84": 87, "39": [87, 102], "85": 87, "86": 87, "87": 87, "88": 87, "k": 87, "43": 87, "89": 87, "90": 87, "91": 87, "46": 87, "92": 87, "93": 87, "94": [87, 102], "70": [87, 102], "71": 87, "set_explicit_wait": 87, "700": 87, "milisecond": 87, "milli": 87, "sec": 87, "set_focu": 87, "take_screenshot": 87, "screenshot_nam": 87, "unselect_checkbox": 87, "slack_message_using_webhook": 89, "icon_emoji": 89, "slack_raw_messag": 89, "max_retry_tim": 91, "necessarili": 91, "unavail": [91, 102], "permalink": 91, "row_exclud": 91, "filteredoutrow": 91, "linkinfromcelldetail": 91, "linksouttocellsdetail": 91, "nonexistentcel": 91, "row_includ": 91, "attachmentfil": 91, "filteredout": 91, "rowid": 91, "rowpermalink": 91, "search_includ": 91, "favoriteflag": 91, "search_scop": 91, "celldata": 91, "foldernam": 91, "reportnam": 91, "sightnam": 91, "summaryfield": 91, "templatenam": 91, "workspacenam": 91, "sheet_includ": 91, "add_column": 91, "column_typ": 91, "text_numb": 91, "format_str": 91, "symbol": [91, 102], "picklist": 91, "multi_picklist": 91, "add_row": 91, "ordereddict": 91, "snake": 91, "row1": 91, "value1": 91, "value2": 91, "row2": 91, "value3": 91, "value4": 91, "row3": 91, "value5": 91, "value6": 91, "set_row": 91, "convert_row_to_dict": 91, "convert_sheet_to_t": 91, "differnt": 91, "from_sheet_id": 91, "download_attach": 91, "123456789": 91, "get_attach": 91, "get_application_const": 91, "serverinfo": 91, "scenario": [91, 102], "get_cell_histori": 91, "cell_histori": 91, "revis": 91, "modified_bi": 91, "get_current_us": 91, "get_sheet": 91, "row_id": 91, "filter_id": 91, "get_sheet_own": 91, "list_attach": 91, "list_column": 91, "list_sheet_filt": 91, "sheetfilt": 91, "filtered_sheet": 91, "my_sheet_id": 91, "list_sheet": 91, "reload": 91, "smartsheetlibrari": 91, "account_token": 91, "refresh_sheet": 91, "modified_sinc": 91, "personalworkspac": 91, "favorit": [91, 98], "parentobjectfavorit": 91, "sight": 91, "summari": 91, "set_access_token": 91, "set_max_retry_tim": 91, "rownumb": 91, "456": [91, 102], "789": 91, "unselect_current_sheet": 91, "update_column": 91, "five": 93, "bespok": 93, "group_table_by_column": 93, "add_cart": 93, "make_ord": 93, "add_table_column": 93, "TOS": 93, "is_first": 93, "isfirst": 93, "add_table_row": 93, "clear_tabl": 93, "copy_t": 93, "table_copi": 93, "namedtupl": [93, 102], "table_data_nam": 93, "table_data_ag": 93, "table_data": 93, "export_t": 93, "with_index": 93, "customerid": 93, "filter_empty_row": 93, "filter_table_by_column": 93, "uwnant": 93, "product_typ": 93, "filter_table_with_keyword": 93, "falsi": [93, 102], "find_table_row": 93, "get_table_cel": 93, "get_table_column": 93, "get_table_dimens": 93, "get_table_row": 93, "get_table_slic": 93, "exclus": 93, "map_column_valu": 93, "merge_t": 93, "egg": 93, "chees": 93, "ham": 93, "stock": 93, "pop_table_column": 93, "userid": 93, "pop_table_row": 93, "firt": 93, "dialect": [93, 102], "delimit": [93, 102], "column_unknown": 93, "deduc": 93, "rename_table_column": 93, "uno": 93, "set_row_as_column_nam": 93, "set_table_cel": 93, "set_table_column": 93, "set_table_row": 93, "sort_table_by_column": 93, "order_d": 93, "table_tail": 93, "tail": [93, 102], "trim_column_nam": 93, "extran": 93, "whitespac": [93, 102], "colum": 93, "trim_empty_row": 93, "write_table_to_csv": 93, "tweepi": 96, "twitter_consumer_kei": 96, "twitter_consumer_secret": 96, "twitter_access_token": 96, "twitter_access_token_secret": 96, "tweet": 96, "niinisto": 96, "get_user_tweet": 96, "tw": 96, "text_search_tweet": 96, "corona": 96, "trump": 96, "get_user_profil": 96, "access_token_secret": 96, "consum": [96, 98], "geocod": 96, "result_typ": 96, "since_id": 96, "max_id": 96, "popular": 96, "radiu": 96, "latitud": 96, "longitud": 96, "status": 96, "unfollow": 96, "unlik": 96, "standalon": 98, "terminologi": [98, 102], "controltyp": 98, "listitem": 98, "windowsel": 98, "fact": 98, "root_el": 98, "automationid": 98, "controltypenam": 98, "classnam": 98, "xcenter": 98, "ycenter": 98, "datagridrow": 98, "regexnam": 98, "subnam": [98, 102], "foundindex": 98, "searchdepth": 98, "travers": 98, "resort": 98, "cascad": 98, "effici": 98, "huge": 98, "spotifi": 98, "thing": 98, "clearbutton": 98, "units1": 98, "unit": 98, "370": [98, 102], "bigger": 98, "deeplynestedbutton": 98, "aren": [98, 102], "reliabl": [98, 102], "achiev": 98, "3rd": [98, 102], "yourself": 98, "uiautom": 98, "lbutton": 98, "rbutton": 98, "cancel": 98, "mbutton": 98, "xbutton1": 98, "x1": 98, "xbutton2": 98, "x2": 98, "capit": 98, "kana": 98, "im": 98, "hanguel": 98, "vk_hangul": 98, "hangul": 98, "junja": 98, "hanja": 98, "kanji": 98, "nonconvert": 98, "modechang": 98, "spacebar": 98, "pageup": 98, "pagedown": 98, "snapshot": 98, "printscreen": 98, "INS": 98, "lwin": 98, "rwin": 98, "numpad0": 98, "keypad": 98, "numpad1": 98, "numpad2": 98, "numpad3": 98, "numpad4": 98, "numpad5": 98, "numpad6": 98, "numpad7": 98, "numpad8": 98, "numpad9": 98, "subtract": 98, "f13": 98, "f14": 98, "f15": 98, "f16": 98, "f17": 98, "f18": 98, "f19": 98, "f21": 98, "f22": 98, "f23": 98, "f24": 98, "numlock": 98, "lshift": 98, "rshift": 98, "lcontrol": 98, "lctrl": 98, "rcontrol": 98, "rctrl": 98, "lalt": 98, "ralt": 98, "browser_back": 98, "browser_forward": 98, "browser_refresh": 98, "browser_stop": 98, "browser_search": 98, "browser_favorit": 98, "browser_hom": 98, "volume_mut": 98, "volum": 98, "volume_down": 98, "volume_up": 98, "media_next_track": 98, "media_prev_track": 98, "media_stop": 98, "media": 98, "media_play_paus": 98, "plai": 98, "launch_mail": 98, "launch_media_select": 98, "launch_app1": 98, "launch_app2": 98, "oem_1": 98, "miscellan": [98, 102], "vari": 98, "oem_plu": 98, "oem_comma": 98, "oem_minu": 98, "oem_period": 98, "oem_2": 98, "oem_3": 98, "oem_4": 98, "oem_5": 98, "oem_6": 98, "oem_7": 98, "oem_8": 98, "oem_102": 98, "angl": 98, "rt": 98, "102": 98, "processkei": 98, "packet": 98, "keystrok": 98, "vk_packet": 98, "low": 98, "remark": 98, "keybdinput": 98, "sendinput": 98, "wm_keydown": 98, "wm_keyup": 98, "attn": 98, "crsel": 98, "exsel": 98, "ereof": 98, "eras": 98, "eof": 98, "zoom": 98, "nonam": 98, "pa1": 98, "oem_clear": 98, "specialkeynam": 98, "ab": 98, "abc": 98, "0123456789": 98, "abcdefghijklmnopqrstuvwxyz": 98, "accesskei": 98, "kept": [98, 102], "inspector": 98, "log_as_warn": 98, "rudimentari": 98, "windowcontrol": 98, "applicationframewindow": 98, "9569486": 98, "titlebar": 98, "applicationframetitlebarwindow": 98, "textcontrol": 98, "eight": 98, "num8button": 98, "buttoncontrol": 98, "nine": 98, "num9button": 98, "abot": 98, "loom": 98, "2807372359f34b9cbe1bc2df9194ec68": 98, "distort": 98, "disturb": 98, "obstruct": 98, "96": 98, "test_do_some_calcul": 98, "windows_run": 98, "control_window": 98, "get_attribut": 98, "close_current_window": 98, "simulate_mov": 98, "write_text": 100, "save_document_a": 100, "fileformat": 100, "wdformatdocumentdefault": 100, "wdformathtml": 100, "opendocu": 100, "wdformatopendocumenttext": 100, "wdformatpdf": 100, "rtf": 100, "wdformatrtf": 100, "word97": 100, "wdformatdocument97": 100, "copy_selection_to_clipboard": 100, "create_new_docu": 100, "export_to_pdf": 100, "cursor_posit": 100, "cursorposit": 100, "no_mov": 100, "cursor": [100, 102], "get_all_text": 100, "get_current_lin": 100, "get_number_of_lin": 100, "move_horizont": 100, "move_to_end": 100, "move_to_line_end": 100, "move_to_line_start": 100, "move_to_top": 100, "move_vert": 100, "replace_text": 100, "save_docu": 100, "select_current_paragraph": 100, "select_paragraph": 100, "set_foot": 100, "set_head": 100, "end_of_text": 100, "bump": 102, "cwe": 102, "1333": 102, "mitr": 102, "cryptographi": 102, "mention": 102, "upgrad": 102, "1199": 102, "truststor": 102, "1191": 102, "enhanc": 102, "start_aft": 102, "garbag": 102, "unreleas": 102, "rgb_to_excel_color": 102, "suitabl": 102, "interior": 102, "1182": 102, "1179": 102, "1178": 102, "spefic": 102, "aiohttp": 102, "chore": 102, "1160": 102, "1159": 102, "1158": 102, "1157": 102, "intellisens": 102, "1152": 102, "move_": 102, "refactor": 102, "1149": 102, "1145": 102, "init_": 102, "markdown": 102, "1144": 102, "1139": 102, "anymor": 102, "1140": 102, "1106": 102, "accordingli": 102, "1128": 102, "1134": 102, "1129": 102, "1130": 102, "thank": 102, "enrico": 102, "franzelli": 102, "contribut": 102, "importlib": 102, "1127": 102, "correctli": 102, "1122": 102, "know": 102, "1123": 102, "dirti": 102, "nit": 102, "inherit": 102, "slip": 102, "strongli": 102, "suggest": 102, "pin": 102, "1060": 102, "inner": 102, "bugfix": 102, "casual": 102, "1105": 102, "1102": 102, "working_dir": 102, "1091": 102, "1078": 102, "1079": 102, "1075": 102, "remind": 102, "wdm_ssl_verifi": 102, "1092": 102, "rc_disable_ssl": 102, "inject": 102, "happen": 102, "1083": 102, "1084": 102, "whitelist": 102, "rpa_external_webdriv": 102, "1080": 102, "64bit": 102, "rpa_allow_64bit_i": 102, "32bit": 102, "1087": 102, "1082": 102, "repurpos": 102, "1057": 102, "overal": 102, "994": 102, "950": 102, "1068": 102, "1069": 102, "1059": 102, "1058": 102, "1055": 102, "better": 102, "tabnam": 102, "719": 102, "1051": 102, "872": 102, "1003": 102, "1054": 102, "1035": 102, "115": 102, "1021": 102, "rpa_selenium_binary_loc": 102, "render": 102, "1016": 102, "gone": 102, "957": 102, "980": 102, "979": 102, "978": 102, "974": 102, "949": 102, "941": 102, "942": 102, "166": 102, "973": 102, "azureai": 102, "943": 102, "overcom": 102, "884": 102, "762": 102, "882": 102, "865": 102, "940": 102, "939": 102, "944": 102, "resultset": 102, "948": 102, "930": 102, "938": 102, "947": 102, "favor": 102, "involv": 102, "945": 102, "935": 102, "926": 102, "916": 102, "586": 102, "919": 102, "pollut": 102, "920": 102, "913": 102, "actionnotposs": 102, "wouldn": 102, "914": 102, "typeerror": 102, "pickl": 102, "dict_kei": 102, "912": 102, "alongsid": 102, "flatten": 102, "besid": 102, "require_open_xlsx_workbook": 102, "908": 102, "switch_window_by_titl": 102, "899": 102, "909": 102, "880": 102, "light": 102, "boxes_flow": 102, "picker": 102, "sometim": 102, "859": 102, "694": 102, "psycopg2": 102, "privaci": 102, "878": 102, "difficult": 102, "regress": 102, "silent": 102, "869": 102, "movement": 102, "855": 102, "send_keys_fallback": 102, "483": 102, "clearer": 102, "usabl": 102, "796": 102, "combo": 102, "791": 102, "591": 102, "797": 102, "pyyaml": 102, "langchain": 102, "867": 102, "earlier": 102, "clariti": 102, "reduc": 102, "unnecessari": 102, "didn": 102, "obei": 102, "migrat": 102, "840": 102, "821": 102, "845": 102, "lower": 102, "misbehav": 102, "838": 102, "828": 102, "833": 102, "803": 102, "792": 102, "four": 102, "cover": 102, "dall": 102, "experi": 102, "webview": 102, "broken": 102, "boilerpl": 102, "635": 102, "robocloud_vault_nam": 102, "use_robocloud_vault": 102, "794": 102, "785": 102, "subtext": 102, "787": 102, "781": 102, "rpa_selenium_browser_ord": 102, "745": 102, "773": 102, "772": 102, "767": 102, "parti": 102, "behav": 102, "pynput": 102, "mislead": 102, "740": 102, "736": 102, "706": 102, "604": 102, "658": 102, "710": 102, "711": 102, "712": 102, "693": 102, "siblings_onli": 102, "ON": 102, "sibl": 102, "692": 102, "687": 102, "pywintypesxx": 102, "683": 102, "685": 102, "cve": 102, "557": 102, "669": 102, "666": 102, "667": 102, "656": 102, "661": 102, "mac": 102, "arm64": 102, "663": 102, "660": 102, "176": 102, "653": 102, "655": 102, "570": 102, "649": 102, "psycopg": 102, "postgresql": 102, "648": 102, "647": 102, "643": 102, "641": 102, "637": 102, "638": 102, "639": 102, "619": 102, "618": 102, "622": 102, "615": 102, "609": 102, "robocorp_click_offset": 102, "610": 102, "611": 102, "494": 102, "602": 102, "607": 102, "got": 102, "385": 102, "oracl": 102, "oracledb": 102, "leak": 102, "599": 102, "603": 102, "lxml": 102, "495": 102, "226": 102, "220": 102, "597": 102, "stem": 102, "583": 102, "593": 102, "592": 102, "rpa_locators_databas": 102, "558": 102, "rational": 102, "538": 102, "unexpectedli": 102, "584": 102, "problemat": 102, "479": 102, "224": 102, "trail": 102, "572": 102, "567": 102, "568": 102, "560": 102, "libspec": 102, "549": 102, "492": 102, "493": 102, "typehint": 102, "548": 102, "jsontyp": 102, "lab": 102, "508": 102, "496": 102, "498": 102, "536": 102, "545": 102, "concern": 102, "515": 102, "481": 102, "504": 102, "505": 102, "506": 102, "507": 102, "490": 102, "485": 102, "484": 102, "491": 102, "indexerror": 102, "470": 102, "477": 102, "469": 102, "473": 102, "439": 102, "471": 102, "408": 102, "363": 102, "wizard": 102, "452": 102, "pyodbc": 102, "443": 102, "hang": 102, "_contain": 102, "throw": 102, "notimplementederror": 102, "392": 102, "394": 102, "391": 102, "pywin32": 102, "comtyp": 102, "interrupt": 102, "spawn": 102, "aid": 102, "comerror": 102, "381": 102, "380": 102, "355": 102, "atleast": 102, "286": 102, "282": 102, "337": 102, "serial": 102, "cleanup": 102, "322": 102, "315": 102, "304": 102, "codec": 102, "243": 102, "only_closest": 102, "closest_neighbour": 102, "pinpoint": 102, "neighbour": 102, "298": 102, "295": 102, "285": 102, "303": 102, "octet": 102, "junk": 102, "dump": 102, "287": 102, "279": 102, "290": 102, "275": 102, "250": 102, "252": 102, "253": 102, "248": 102, "dependt": 102, "bypass": 102, "241": 102, "225": 102, "textbox": 102, "235": 102, "rpa_input_workitem_path": 102, "234": 102, "237": 102, "tzlocal": 102, "newlin": 102, "carriag": 102, "203": 102, "ibm_db": 102, "pythonlibcor": 102, "pymssql": 102, "received_bi": 102, "experiment": 102, "appreci": 102, "alias": 102, "dock": 102, "pyobjc": 102, "confus": 102, "shortcom": 102, "171": 102, "rotat": 102, "figur": 102, "pdfminer": 102, "161": 102, "antusystem": 102, "156": 102, "reboot": 102, "unifi": 102, "mismatch": 102, "nonetyp": 102, "146": 102, "148": 102, "activedocu": 102, "notebook": 102, "element1": 102, "constrain": 102, "chardet": 102, "destructor": 102, "gather": 102, "buffer": 102, "period": 102, "docutil": 102, "lsp": 102, "evdev": 102, "logarithm": 102, "stylesheet": 102, "shm": 102, "unsav": 102, "predefin": 102, "databaselibrari": 102, "pyscreenshot": 102, "mss": 102, "termin": 102, "filetyp": 102, "unpack": 102, "earli": 102, "superflu": 102, "jupyt": 102, "robocod": 102, "embed": 102, "infobar": 102, "use_test": 102, "mitig": 102, "msoffic": 102, "mdp": 102, "ga": 102, "kw": 102, "imapstmp": 102, "harmon": 102, "psutil": 102, "wheel": 102, "interpol": 102, "sanit": 102, "webdrivermanag": 102, "restructur": 102}, "objects": {"RPA.Archive": [[5, 0, 1, "", "Archive"]], "RPA.Archive.Archive": [[5, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [5, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [5, 2, 1, "", "add_to_archive"], [5, 2, 1, "", "archive_folder_with_tar"], [5, 2, 1, "", "archive_folder_with_zip"], [5, 2, 1, "", "extract_archive"], [5, 2, 1, "", "extract_file_from_archive"], [5, 2, 1, "", "get_archive_info"], [5, 2, 1, "", "list_archive"]], "RPA.Assistant": [[7, 0, 1, "", "Assistant"]], "RPA.Assistant.Assistant": [[7, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [7, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [7, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [7, 2, 1, "", "add_button"], [7, 2, 1, "", "add_checkbox"], [7, 2, 1, "", "add_date_input"], [7, 2, 1, "", "add_drop_down"], [7, 2, 1, "", "add_file"], [7, 2, 1, "", "add_file_input"], [7, 2, 1, "", "add_files"], [7, 2, 1, "", "add_flet_icon"], [7, 2, 1, "", "add_heading"], [7, 2, 1, "", "add_hidden_input"], [7, 2, 1, "", "add_icon"], [7, 2, 1, "", "add_image"], [7, 2, 1, "", "add_link"], [7, 2, 1, "", "add_loading_bar"], [7, 2, 1, "", "add_loading_spinner"], [7, 2, 1, "", "add_next_ui_button"], [7, 2, 1, "", "add_password_input"], [7, 2, 1, "", "add_radio_buttons"], [7, 2, 1, "", "add_slider"], [7, 2, 1, "", "add_submit_buttons"], [7, 2, 1, "", "add_text"], [7, 2, 1, "", "add_text_input"], [7, 2, 1, "", "ask_user"], [7, 2, 1, "", "clear_dialog"], [7, 2, 1, "", "close_column"], [7, 2, 1, "", "close_container"], [7, 2, 1, "", "close_navbar"], [7, 2, 1, "", "close_row"], [7, 2, 1, "", "close_stack"], [7, 2, 1, "", "open_column"], [7, 2, 1, "", "open_container"], [7, 2, 1, "", "open_navbar"], [7, 2, 1, "", "open_row"], [7, 2, 1, "", "open_stack"], [7, 2, 1, "", "refresh_dialog"], [7, 2, 1, "", "run_dialog"], [7, 2, 1, "", "set_title"]], "RPA.Browser.Selenium": [[11, 0, 1, "", "Selenium"]], "RPA.Browser.Selenium.Selenium": [[11, 1, 1, "", "AVAILABLE_OPTIONS"], [11, 1, 1, "", "AVAILABLE_SERVICES"], [11, 1, 1, "", "BROWSER_NAMES"], [11, 1, 1, "", "CHROMIUM_BROWSERS"], [11, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [11, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [11, 1, 1, "", "ROBOT_LIBRARY_VERSION"], [11, 1, 1, "", "SUPPORTED_BROWSERS"], [11, 2, 1, "", "add_library_components"], [11, 2, 1, "", "attach_chrome_browser"], [11, 2, 1, "", "clear_all_highlights"], [11, 2, 1, "", "click_button_when_visible"], [11, 2, 1, "", "click_element_if_visible"], [11, 2, 1, "", "click_element_when_clickable"], [11, 2, 1, "", "click_element_when_visible"], [11, 2, 1, "", "does_alert_contain"], [11, 2, 1, "", "does_alert_not_contain"], [11, 2, 1, "", "does_element_contain"], [11, 2, 1, "", "does_frame_contain"], [11, 2, 1, "", "does_location_contain"], [11, 2, 1, "", "does_page_contain"], [11, 2, 1, "", "does_page_contain_button"], [11, 2, 1, "", "does_page_contain_checkbox"], [11, 2, 1, "", "does_page_contain_element"], [11, 2, 1, "", "does_page_contain_image"], [11, 2, 1, "", "does_page_contain_link"], [11, 2, 1, "", "does_page_contain_list"], [11, 2, 1, "", "does_page_contain_radio_button"], [11, 2, 1, "", "does_page_contain_textfield"], [11, 2, 1, "", "does_table_cell_contain"], [11, 2, 1, "", "does_table_column_contain"], [11, 2, 1, "", "does_table_contain"], [11, 2, 1, "", "does_table_footer_contain"], [11, 2, 1, "", "does_table_header_contain"], [11, 2, 1, "", "does_table_row_contain"], [11, 2, 1, "", "does_textarea_contain"], [11, 2, 1, "", "does_textfield_contain"], [11, 3, 1, "", "driver"], [11, 2, 1, "", "execute_cdp"], [11, 2, 1, "", "failure_occurred"], [11, 2, 1, "", "find_element"], [11, 2, 1, "", "find_elements"], [11, 2, 1, "", "get_browser_capabilities"], [11, 2, 1, "", "get_element_status"], [11, 2, 1, "", "get_keyword_arguments"], [11, 2, 1, "", "get_keyword_documentation"], [11, 2, 1, "", "get_keyword_names"], [11, 2, 1, "", "get_keyword_source"], [11, 2, 1, "", "get_keyword_tags"], [11, 2, 1, "", "get_keyword_types"], [11, 2, 1, "", "get_testability_status"], [11, 2, 1, "", "get_webelement"], [11, 2, 1, "", "highlight_elements"], [11, 2, 1, "", "input_text_when_element_is_visible"], [11, 2, 1, "", "is_alert_present"], [11, 2, 1, "", "is_checkbox_selected"], [11, 3, 1, "", "is_chromium"], [11, 2, 1, "", "is_element_attribute_equal_to"], [11, 2, 1, "", "is_element_disabled"], [11, 2, 1, "", "is_element_enabled"], [11, 2, 1, "", "is_element_focused"], [11, 2, 1, "", "is_element_text"], [11, 2, 1, "", "is_element_visible"], [11, 2, 1, "", "is_list_selected"], [11, 2, 1, "", "is_list_selection"], [11, 2, 1, "", "is_location"], [11, 2, 1, "", "is_radio_button_selected"], [11, 2, 1, "", "is_radio_button_set_to"], [11, 2, 1, "", "is_textarea_value"], [11, 2, 1, "", "is_textfield_value"], [11, 2, 1, "", "is_title"], [11, 3, 1, "", "location"], [11, 2, 1, "", "normalize_options"], [11, 2, 1, "", "open_available_browser"], [11, 2, 1, "", "open_chrome_browser"], [11, 2, 1, "", "open_headless_chrome_browser"], [11, 2, 1, "", "open_user_browser"], [11, 2, 1, "", "print_to_pdf"], [11, 2, 1, "", "register_driver"], [11, 2, 1, "", "run_keyword"], [11, 2, 1, "", "screenshot"], [11, 2, 1, "", "set_download_directory"], [11, 2, 1, "", "set_element_attribute"], [11, 2, 1, "", "wait_and_click_button"]], "RPA.Calendar": [[13, 0, 1, "", "Calendar"]], "RPA.Calendar.Calendar": [[13, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [13, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [13, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [13, 2, 1, "", "add_custom_holidays"], [13, 2, 1, "", "compare_times"], [13, 2, 1, "", "create_time"], [13, 2, 1, "", "first_business_day_of_the_month"], [13, 2, 1, "", "get_iso_calendar"], [13, 2, 1, "", "is_the_date_business_day"], [13, 2, 1, "", "is_the_date_holiday"], [13, 2, 1, "", "last_business_day_of_the_month"], [13, 2, 1, "", "reset_custom_holidays"], [13, 2, 1, "", "return_holidays"], [13, 2, 1, "", "return_next_business_day"], [13, 2, 1, "", "return_previous_business_day"], [13, 2, 1, "", "set_business_days"], [13, 2, 1, "", "set_locale"], [13, 2, 1, "", "sort_list_of_dates"], [13, 2, 1, "", "time_difference"], [13, 2, 1, "", "time_difference_between_timezones"], [13, 2, 1, "", "time_difference_in_days"], [13, 2, 1, "", "time_difference_in_hours"], [13, 2, 1, "", "time_difference_in_minutes"], [13, 2, 1, "", "time_difference_in_months"], [13, 2, 1, "", "time_now"]], "RPA.Cloud.AWS": [[15, 0, 1, "", "AWS"]], "RPA.Cloud.AWS.AWS": [[15, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [15, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [15, 2, 1, "", "analyze_document"], [15, 2, 1, "", "assume_role"], [15, 1, 1, "", "clients"], [15, 2, 1, "", "convert_textract_response_to_model"], [15, 2, 1, "", "create_bucket"], [15, 2, 1, "", "create_queue"], [15, 2, 1, "", "create_redshift_statement_parameters"], [15, 2, 1, "", "delete_bucket"], [15, 2, 1, "", "delete_files"], [15, 2, 1, "", "delete_message"], [15, 2, 1, "", "delete_queue"], [15, 2, 1, "", "describe_redshift_table"], [15, 2, 1, "", "detect_document_text"], [15, 2, 1, "", "detect_entities"], [15, 2, 1, "", "detect_sentiment"], [15, 2, 1, "", "download_files"], [15, 2, 1, "", "execute_redshift_statement"], [15, 2, 1, "", "execute_redshift_statement_asyncronously"], [15, 2, 1, "", "generate_presigned_url"], [15, 2, 1, "", "get_cells"], [15, 2, 1, "", "get_document_analysis"], [15, 2, 1, "", "get_document_text_detection"], [15, 2, 1, "", "get_pages_and_text"], [15, 2, 1, "", "get_redshift_statement_results"], [15, 2, 1, "", "get_tables"], [15, 2, 1, "", "get_words"], [15, 2, 1, "", "init_comprehend_client"], [15, 2, 1, "", "init_redshift_data_client"], [15, 2, 1, "", "init_s3_client"], [15, 2, 1, "", "init_sqs_client"], [15, 2, 1, "", "init_sts_client"], [15, 2, 1, "", "init_textract_client"], [15, 2, 1, "", "list_buckets"], [15, 2, 1, "", "list_files"], [15, 2, 1, "", "list_redshift_databases"], [15, 2, 1, "", "list_redshift_schemas"], [15, 2, 1, "", "list_redshift_tables"], [15, 1, 1, "", "logger"], [15, 2, 1, "", "receive_message"], [15, 1, 1, "", "region"], [15, 1, 1, "", "robocorp_vault_name"], [15, 2, 1, "", "send_message"], [15, 1, 1, "", "services"], [15, 2, 1, "", "set_robocorp_vault"], [15, 2, 1, "", "start_document_analysis"], [15, 2, 1, "", "start_document_text_detection"], [15, 2, 1, "", "upload_file"], [15, 2, 1, "", "upload_files"]], "RPA.Cloud.Azure": [[17, 0, 1, "", "Azure"]], "RPA.Cloud.Azure.Azure": [[17, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [17, 1, 1, "", "ROBOT_LIBRARY_SCOPE"]], "RPA.Cloud.Google": [[19, 0, 1, "", "Google"]], "RPA.Cloud.Google.Google": [[19, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [19, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [19, 2, 1, "", "add_attachment_to_message"], [19, 2, 1, "", "add_drive_share"], [19, 2, 1, "", "analyze_sentiment"], [19, 2, 1, "", "annotate_image"], [19, 2, 1, "", "annotate_video"], [19, 2, 1, "", "classify_text"], [19, 2, 1, "", "clear_sheet_values"], [19, 2, 1, "", "copy_sheet"], [19, 2, 1, "", "copy_spreadsheet"], [19, 2, 1, "", "create_drive_directory"], [19, 2, 1, "", "create_message"], [19, 2, 1, "", "create_sheet"], [19, 2, 1, "", "create_spreadsheet"], [19, 2, 1, "", "create_storage_bucket"], [19, 2, 1, "", "delete_drive_file"], [19, 2, 1, "", "delete_sheet"], [19, 2, 1, "", "delete_storage_bucket"], [19, 2, 1, "", "delete_storage_files"], [19, 2, 1, "", "detect_document"], [19, 2, 1, "", "detect_labels"], [19, 2, 1, "", "detect_tables"], [19, 2, 1, "", "detect_text"], [19, 2, 1, "", "download_drive_files"], [19, 2, 1, "", "download_storage_files"], [19, 2, 1, "", "export_drive_file"], [19, 2, 1, "", "face_detection"], [19, 2, 1, "", "generic_spreadsheet_batch_update"], [19, 2, 1, "", "get_all_sheet_values"], [19, 2, 1, "", "get_document_entities"], [19, 2, 1, "", "get_document_languages"], [19, 2, 1, "", "get_drive_file_by_id"], [19, 2, 1, "", "get_drive_folder_id"], [19, 2, 1, "", "get_sheet_by_name"], [19, 2, 1, "", "get_sheet_formulas"], [19, 2, 1, "", "get_sheet_values"], [19, 2, 1, "", "get_spreadsheet_basic_information"], [19, 2, 1, "", "get_spreadsheet_details"], [19, 2, 1, "", "get_storage_bucket"], [19, 2, 1, "", "handle_mimetypes"], [19, 2, 1, "", "init_apps_script"], [19, 2, 1, "", "init_document_ai"], [19, 2, 1, "", "init_drive"], [19, 2, 1, "", "init_gmail"], [19, 2, 1, "", "init_natural_language"], [19, 2, 1, "", "init_sheets"], [19, 2, 1, "", "init_speech_to_text"], [19, 2, 1, "", "init_storage"], [19, 2, 1, "", "init_text_to_speech"], [19, 2, 1, "", "init_translation"], [19, 2, 1, "", "init_video_intelligence"], [19, 2, 1, "", "init_vision"], [19, 2, 1, "", "insert_sheet_values"], [19, 2, 1, "", "list_messages"], [19, 2, 1, "", "list_processors"], [19, 2, 1, "", "list_shared_drive_files"], [19, 2, 1, "", "list_storage_buckets"], [19, 2, 1, "", "list_storage_files"], [19, 2, 1, "", "list_supported_voices"], [19, 2, 1, "", "load_document_response"], [19, 2, 1, "", "move_drive_file"], [19, 2, 1, "", "parse_parts"], [19, 2, 1, "", "process_document"], [19, 2, 1, "", "recognize_text_from_audio"], [19, 2, 1, "", "remove_all_drive_shares"], [19, 2, 1, "", "remove_drive_share_by_criteria"], [19, 2, 1, "", "remove_drive_share_by_permission_id"], [19, 2, 1, "", "rename_sheet"], [19, 2, 1, "", "run_script"], [19, 2, 1, "", "save_document_response"], [19, 2, 1, "", "search_drive_files"], [19, 2, 1, "", "send_message"], [19, 2, 1, "", "set_audio_type"], [19, 2, 1, "", "set_headers_to_message_dict"], [19, 2, 1, "", "set_image_type"], [19, 2, 1, "", "set_list_parameters"], [19, 2, 1, "", "set_robocorp_vault"], [19, 2, 1, "", "synthesize_speech"], [19, 2, 1, "", "to_A1_notation"], [19, 2, 1, "", "to_column_letter"], [19, 2, 1, "", "translate"], [19, 2, 1, "", "update_drive_file"], [19, 2, 1, "", "update_sheet_values"], [19, 2, 1, "", "upload_drive_file"], [19, 2, 1, "", "upload_storage_file"], [19, 2, 1, "", "upload_storage_files"]], "RPA.Crypto": [[21, 0, 1, "", "Crypto"]], "RPA.Crypto.Crypto": [[21, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [21, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [21, 2, 1, "", "decrypt_file"], [21, 2, 1, "", "decrypt_string"], [21, 2, 1, "", "encrypt_file"], [21, 2, 1, "", "encrypt_string"], [21, 2, 1, "", "generate_key"], [21, 2, 1, "", "hash_file"], [21, 2, 1, "", "hash_string"], [21, 2, 1, "", "use_encryption_key"], [21, 2, 1, "", "use_encryption_key_from_vault"]], "RPA.Database": [[23, 0, 1, "", "Database"]], "RPA.Database.Database": [[23, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [23, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [23, 2, 1, "", "call_stored_procedure"], [23, 2, 1, "", "connect_to_database"], [23, 2, 1, "", "description"], [23, 2, 1, "", "disconnect_from_database"], [23, 2, 1, "", "execute_sql_script"], [23, 2, 1, "", "get_number_of_rows"], [23, 2, 1, "", "get_rows"], [23, 2, 1, "", "query"], [23, 2, 1, "", "set_auto_commit"]], "RPA.Desktop.Clipboard": [[27, 0, 1, "", "Clipboard"]], "RPA.Desktop.Clipboard.Clipboard": [[27, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [27, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [27, 2, 1, "", "clear_clipboard"], [27, 2, 1, "", "copy_to_clipboard"], [27, 2, 1, "", "paste_from_clipboard"]], "RPA.Desktop": [[25, 0, 1, "", "Desktop"]], "RPA.Desktop.Desktop": [[25, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [25, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [25, 2, 1, "", "add_library_components"], [25, 2, 1, "", "get_keyword_arguments"], [25, 2, 1, "", "get_keyword_documentation"], [25, 2, 1, "", "get_keyword_names"], [25, 2, 1, "", "get_keyword_source"], [25, 2, 1, "", "get_keyword_tags"], [25, 2, 1, "", "get_keyword_types"], [25, 2, 1, "", "run_keyword"]], "RPA.Desktop.OperatingSystem": [[29, 0, 1, "", "OperatingSystem"]], "RPA.Desktop.OperatingSystem.OperatingSystem": [[29, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [29, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [29, 2, 1, "", "boot_time_in_seconds_from_epoch"], [29, 2, 1, "", "get_boot_time"], [29, 2, 1, "", "get_machine_name"], [29, 2, 1, "", "get_memory_stats"], [29, 2, 1, "", "get_username"], [29, 2, 1, "", "kill_process"], [29, 2, 1, "", "kill_process_by_pid"], [29, 2, 1, "", "process_exists"], [29, 2, 1, "", "process_id_exists"], [29, 2, 1, "", "put_system_to_sleep"]], "RPA.Desktop.Windows": [[31, 0, 1, "", "Windows"]], "RPA.Desktop.Windows.Windows": [[31, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [31, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [31, 2, 1, "", "boot_time_in_seconds_from_epoch"], [31, 2, 1, "", "calculate_rectangle_center"], [31, 2, 1, "", "click_type"], [31, 2, 1, "", "close_all_applications"], [31, 2, 1, "", "connect_by_handle"], [31, 2, 1, "", "connect_by_pid"], [31, 2, 1, "", "drag_and_drop"], [31, 2, 1, "", "find_element"], [31, 2, 1, "", "get_app"], [31, 2, 1, "", "get_boot_time"], [31, 2, 1, "", "get_dialog_rectangle"], [31, 2, 1, "", "get_element"], [31, 2, 1, "", "get_element_center"], [31, 2, 1, "", "get_element_rectangle"], [31, 2, 1, "", "get_element_rich_text"], [31, 2, 1, "", "get_machine_name"], [31, 2, 1, "", "get_memory_stats"], [31, 2, 1, "", "get_open_applications"], [31, 2, 1, "", "get_spaced_string"], [31, 2, 1, "", "get_text"], [31, 2, 1, "", "get_username"], [31, 2, 1, "", "get_window_elements"], [31, 2, 1, "", "get_window_list"], [31, 2, 1, "", "is_element_enabled"], [31, 2, 1, "", "is_element_matching"], [31, 2, 1, "", "is_element_visible"], [31, 2, 1, "", "kill_process"], [31, 2, 1, "", "kill_process_by_pid"], [31, 2, 1, "", "lock_screen"], [31, 2, 1, "", "log_in"], [31, 2, 1, "", "menu_select"], [31, 2, 1, "", "minimize_dialog"], [31, 2, 1, "", "mouse_click"], [31, 2, 1, "", "mouse_click_coords"], [31, 2, 1, "", "mouse_click_image"], [31, 2, 1, "", "open_application"], [31, 2, 1, "", "open_dialog"], [31, 2, 1, "", "open_executable"], [31, 2, 1, "", "open_file"], [31, 2, 1, "", "open_from_search"], [31, 2, 1, "", "open_using_run_dialog"], [31, 2, 1, "", "process_exists"], [31, 2, 1, "", "process_id_exists"], [31, 2, 1, "", "put_system_to_sleep"], [31, 2, 1, "", "quit_application"], [31, 2, 1, "", "refresh_window"], [31, 2, 1, "", "restore_dialog"], [31, 2, 1, "", "screenshot"], [31, 2, 1, "", "send_keys"], [31, 2, 1, "", "send_keys_to_input"], [31, 2, 1, "", "set_automation_speed"], [31, 2, 1, "", "set_windows_backend"], [31, 2, 1, "", "switch_to_application"], [31, 2, 1, "", "type_into"], [31, 2, 1, "", "type_keys"], [31, 2, 1, "", "wait_for_element"]], "RPA.DocumentAI.Base64AI": [[35, 0, 1, "", "Base64AI"]], "RPA.DocumentAI.Base64AI.Base64AI": [[35, 1, 1, "", "BASE_URL"], [35, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [35, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [35, 2, 1, "", "filter_matching_signatures"], [35, 2, 1, "", "get_fields_from_prediction_result"], [35, 2, 1, "", "get_matching_signatures"], [35, 2, 1, "", "get_signature_image"], [35, 2, 1, "", "get_user_data"], [35, 2, 1, "", "scan_document_file"], [35, 2, 1, "", "scan_document_url"], [35, 2, 1, "", "set_authorization"]], "RPA.DocumentAI.DocumentAI": [[33, 0, 1, "", "DocumentAI"]], "RPA.DocumentAI.DocumentAI.DocumentAI": [[33, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [33, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [33, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [33, 3, 1, "", "engine"], [33, 2, 1, "", "get_result"], [33, 2, 1, "", "init_engine"], [33, 2, 1, "", "predict"], [33, 3, 1, "", "result"], [33, 2, 1, "", "switch_engine"]], "RPA.DocumentAI.Nanonets": [[37, 0, 1, "", "Nanonets"]], "RPA.DocumentAI.Nanonets.Nanonets": [[37, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [37, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [37, 2, 1, "", "get_all_models"], [37, 2, 1, "", "get_fields_from_prediction_result"], [37, 2, 1, "", "get_tables_from_prediction_result"], [37, 2, 1, "", "ocr_fulltext"], [37, 2, 1, "", "predict_file"], [37, 2, 1, "", "set_authorization"]], "RPA.Email.Exchange": [[39, 0, 1, "", "Exchange"]], "RPA.Email.Exchange.Exchange": [[39, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [39, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [39, 1, 1, "", "TO_PROTECT"], [39, 2, 1, "", "authorize"], [39, 2, 1, "", "create_folder"], [39, 2, 1, "", "delete_folder"], [39, 2, 1, "", "delete_message"], [39, 2, 1, "", "empty_folder"], [39, 2, 1, "", "forward_message"], [39, 2, 1, "", "generate_oauth_url"], [39, 2, 1, "", "get_oauth_token"], [39, 2, 1, "", "list_messages"], [39, 2, 1, "", "list_unread_messages"], [39, 2, 1, "", "move_message"], [39, 2, 1, "", "move_messages"], [39, 2, 1, "", "refresh_oauth_token"], [39, 2, 1, "", "rename_folder"], [39, 2, 1, "", "save_attachments"], [39, 2, 1, "", "save_message"], [39, 2, 1, "", "send_message"], [39, 2, 1, "", "send_reply_message"], [39, 2, 1, "", "wait_for_message"]], "RPA.Email.ImapSmtp": [[41, 0, 1, "", "ImapSmtp"]], "RPA.Email.ImapSmtp.ImapSmtp": [[41, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [41, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [41, 1, 1, "", "TO_PROTECT"], [41, 2, 1, "", "add_gmail_labels"], [41, 2, 1, "", "authorize"], [41, 2, 1, "", "authorize_imap"], [41, 2, 1, "", "authorize_smtp"], [41, 2, 1, "", "convert_eml_file_into_message"], [41, 2, 1, "", "create_folder"], [41, 2, 1, "", "delete_folder"], [41, 2, 1, "", "delete_message"], [41, 2, 1, "", "delete_messages"], [41, 2, 1, "", "do_message_actions"], [41, 2, 1, "", "email_to_document"], [41, 2, 1, "", "flag_messages"], [41, 2, 1, "", "generate_oauth_string"], [41, 2, 1, "", "generate_oauth_url"], [41, 2, 1, "", "get_decoded_email_body"], [41, 2, 1, "", "get_folder_list"], [41, 2, 1, "", "get_oauth_token"], [41, 2, 1, "", "list_messages"], [41, 2, 1, "", "mark_as_read"], [41, 2, 1, "", "mark_as_unread"], [41, 2, 1, "", "move_messages"], [41, 2, 1, "", "move_messages_by_ids"], [41, 2, 1, "", "refresh_oauth_token"], [41, 2, 1, "", "remove_gmail_labels"], [41, 2, 1, "", "rename_folder"], [41, 2, 1, "", "save_attachment"], [41, 2, 1, "", "save_attachments"], [41, 2, 1, "", "save_messages"], [41, 2, 1, "", "select_folder"], [41, 2, 1, "", "send_message"], [41, 2, 1, "", "send_smtp_hello"], [41, 2, 1, "", "set_credentials"], [41, 2, 1, "", "unflag_messages"], [41, 2, 1, "", "wait_for_message"]], "RPA.Excel.Application": [[43, 0, 1, "", "Application"]], "RPA.Excel.Application.Application": [[43, 1, 1, "", "APP_DISPATCH"], [43, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [43, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [43, 2, 1, "", "add_new_sheet"], [43, 2, 1, "", "add_new_workbook"], [43, 3, 1, "", "app"], [43, 2, 1, "", "close_document"], [43, 2, 1, "", "create_pivot_field"], [43, 2, 1, "", "create_pivot_table"], [43, 2, 1, "", "create_table"], [43, 2, 1, "", "export_as_pdf"], [43, 2, 1, "", "find"], [43, 2, 1, "", "find_first_available_cell"], [43, 2, 1, "", "find_first_available_row"], [43, 2, 1, "", "get_pivot_tables"], [43, 2, 1, "", "get_range"], [43, 2, 1, "", "list_tables"], [43, 2, 1, "", "merge_range"], [43, 2, 1, "", "open_application"], [43, 2, 1, "", "open_workbook"], [43, 2, 1, "", "quit_application"], [43, 2, 1, "", "read_from_cells"], [43, 2, 1, "", "remove_hidden_columns_and_rows"], [43, 2, 1, "", "run_macro"], [43, 2, 1, "", "save_excel"], [43, 2, 1, "", "save_excel_as"], [43, 2, 1, "", "set_active_worksheet"], [43, 2, 1, "", "set_object_property"], [43, 2, 1, "", "unmerge_range"], [43, 2, 1, "", "write_data_to_range"], [43, 2, 1, "", "write_to_cells"]], "RPA.Excel.Files": [[45, 0, 1, "", "Files"]], "RPA.Excel.Files.Files": [[45, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [45, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [45, 2, 1, "", "append_rows_to_worksheet"], [45, 2, 1, "", "auto_size_columns"], [45, 2, 1, "", "clear_cell_range"], [45, 2, 1, "", "close_workbook"], [45, 2, 1, "", "copy_cell_values"], [45, 2, 1, "", "create_workbook"], [45, 2, 1, "", "create_worksheet"], [45, 2, 1, "", "delete_columns"], [45, 2, 1, "", "delete_rows"], [45, 2, 1, "", "find_empty_row"], [45, 2, 1, "", "get_active_worksheet"], [45, 2, 1, "", "get_cell_value"], [45, 2, 1, "", "get_worksheet_value"], [45, 2, 1, "", "hide_columns"], [45, 2, 1, "", "insert_columns_after"], [45, 2, 1, "", "insert_columns_before"], [45, 2, 1, "", "insert_image_to_worksheet"], [45, 2, 1, "", "insert_rows_after"], [45, 2, 1, "", "insert_rows_before"], [45, 2, 1, "", "list_worksheets"], [45, 2, 1, "", "move_range"], [45, 2, 1, "", "open_workbook"], [45, 2, 1, "", "read_worksheet"], [45, 2, 1, "", "read_worksheet_as_table"], [45, 2, 1, "", "remove_worksheet"], [45, 2, 1, "", "rename_worksheet"], [45, 2, 1, "", "save_workbook"], [45, 2, 1, "", "set_active_worksheet"], [45, 2, 1, "", "set_cell_format"], [45, 2, 1, "", "set_cell_formula"], [45, 2, 1, "", "set_cell_value"], [45, 2, 1, "", "set_cell_values"], [45, 2, 1, "", "set_styles"], [45, 2, 1, "", "set_worksheet_value"], [45, 2, 1, "", "unhide_columns"], [45, 2, 1, "", "worksheet_exists"]], "RPA.FTP": [[49, 0, 1, "", "FTP"]], "RPA.FTP.FTP": [[49, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [49, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [49, 2, 1, "", "abort"], [49, 2, 1, "", "close"], [49, 2, 1, "", "connect"], [49, 2, 1, "", "cwd"], [49, 2, 1, "", "delete"], [49, 2, 1, "", "download"], [49, 2, 1, "", "file_size"], [49, 2, 1, "", "get_welcome_message"], [49, 2, 1, "", "list_files"], [49, 2, 1, "", "mkd"], [49, 2, 1, "", "pwd"], [49, 2, 1, "", "quit"], [49, 2, 1, "", "rename"], [49, 2, 1, "", "rmd"], [49, 2, 1, "", "send_command"], [49, 2, 1, "", "set_ascii_mode"], [49, 2, 1, "", "set_binary_mode"], [49, 2, 1, "", "set_debug_level"], [49, 2, 1, "", "upload"]], "RPA.FileSystem": [[47, 0, 1, "", "FileSystem"]], "RPA.FileSystem.FileSystem": [[47, 1, 1, "", "PATH_TYPE"], [47, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [47, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [47, 2, 1, "", "absolute_path"], [47, 2, 1, "", "append_to_binary_file"], [47, 2, 1, "", "append_to_file"], [47, 2, 1, "", "change_file_extension"], [47, 2, 1, "", "copy_directory"], [47, 2, 1, "", "copy_file"], [47, 2, 1, "", "copy_files"], [47, 2, 1, "", "create_binary_file"], [47, 2, 1, "", "create_directory"], [47, 2, 1, "", "create_file"], [47, 2, 1, "", "does_directory_exist"], [47, 2, 1, "", "does_directory_not_exist"], [47, 2, 1, "", "does_file_exist"], [47, 2, 1, "", "does_file_not_exist"], [47, 2, 1, "", "empty_directory"], [47, 2, 1, "", "find_files"], [47, 2, 1, "", "get_file_creation_date"], [47, 2, 1, "", "get_file_extension"], [47, 2, 1, "", "get_file_modified_date"], [47, 2, 1, "", "get_file_name"], [47, 2, 1, "", "get_file_owner"], [47, 2, 1, "", "get_file_size"], [47, 2, 1, "", "get_file_stem"], [47, 2, 1, "", "is_directory_empty"], [47, 2, 1, "", "is_directory_not_empty"], [47, 2, 1, "", "is_file_empty"], [47, 2, 1, "", "is_file_not_empty"], [47, 2, 1, "", "join_path"], [47, 2, 1, "", "list_directories_in_directory"], [47, 2, 1, "", "list_files_in_directory"], [47, 2, 1, "", "log_directory_tree"], [47, 2, 1, "", "move_directory"], [47, 2, 1, "", "move_file"], [47, 2, 1, "", "move_files"], [47, 2, 1, "", "normalize_path"], [47, 2, 1, "", "read_binary_file"], [47, 2, 1, "", "read_file"], [47, 2, 1, "", "remove_directory"], [47, 2, 1, "", "remove_file"], [47, 2, 1, "", "remove_files"], [47, 2, 1, "", "run_keyword_if_file_exists"], [47, 2, 1, "", "touch_file"], [47, 2, 1, "", "wait_until_created"], [47, 2, 1, "", "wait_until_modified"], [47, 2, 1, "", "wait_until_removed"]], "RPA.HTTP": [[51, 0, 1, "", "HTTP"]], "RPA.HTTP.HTTP": [[51, 1, 1, "", "DEFAULT_RETRY_METHOD_LIST"], [51, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [51, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [51, 2, 1, "", "check_vulnerabilities"], [51, 2, 1, "", "create_client_cert_session"], [51, 2, 1, "", "create_custom_session"], [51, 2, 1, "", "create_digest_session"], [51, 2, 1, "", "create_ntlm_session"], [51, 2, 1, "", "create_session"], [51, 2, 1, "", "delete_all_sessions"], [51, 2, 1, "", "delete_on_session"], [51, 2, 1, "", "delete_request"], [51, 2, 1, "", "download"], [51, 2, 1, "", "get_current_session_alias"], [51, 2, 1, "", "get_file_for_streaming_upload"], [51, 2, 1, "", "get_on_session"], [51, 2, 1, "", "get_request"], [51, 2, 1, "", "head_on_session"], [51, 2, 1, "", "head_request"], [51, 2, 1, "", "http_get"], [51, 2, 1, "", "options_on_session"], [51, 2, 1, "", "options_request"], [51, 2, 1, "", "patch_on_session"], [51, 2, 1, "", "patch_request"], [51, 2, 1, "", "post_on_session"], [51, 2, 1, "", "post_request"], [51, 2, 1, "", "put_on_session"], [51, 2, 1, "", "put_request"], [51, 2, 1, "", "request_should_be_successful"], [51, 2, 1, "", "session_exists"], [51, 2, 1, "", "session_less_delete"], [51, 2, 1, "", "session_less_get"], [51, 2, 1, "", "session_less_head"], [51, 2, 1, "", "session_less_options"], [51, 2, 1, "", "session_less_patch"], [51, 2, 1, "", "session_less_post"], [51, 2, 1, "", "session_less_put"], [51, 2, 1, "", "status_should_be"], [51, 2, 1, "", "to_json"], [51, 2, 1, "", "update_session"]], "RPA.Hubspot": [[53, 0, 1, "", "Hubspot"]], "RPA.Hubspot.Hubspot": [[53, 1, 1, "", "BUILTIN_PLURAL_MAP"], [53, 1, 1, "", "BUILTIN_SINGULAR_MAP"], [53, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [53, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [53, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [53, 2, 1, "", "add_input_to_batch"], [53, 2, 1, "", "auth_with_api_key"], [53, 2, 1, "", "auth_with_token"], [53, 3, 1, "", "batch_input"], [53, 2, 1, "", "clear_current_batch"], [53, 2, 1, "", "create_new_batch"], [53, 2, 1, "", "create_object"], [53, 2, 1, "", "execute_batch"], [53, 2, 1, "", "extend_batch_with_inputs"], [53, 2, 1, "", "get_current_batch"], [53, 2, 1, "", "get_current_batch_inputs"], [53, 2, 1, "", "get_current_stage_of_object"], [53, 2, 1, "", "get_object"], [53, 2, 1, "", "get_owner_by_id"], [53, 2, 1, "", "get_owner_of_object"], [53, 2, 1, "", "get_pipeline"], [53, 2, 1, "", "get_pipeline_stages"], [53, 2, 1, "", "get_user"], [53, 2, 1, "", "list_associations"], [53, 2, 1, "", "list_pipelines"], [53, 3, 1, "", "pipelines"], [53, 3, 1, "", "schemas"], [53, 2, 1, "", "search_for_objects"], [53, 2, 1, "", "set_association"], [53, 2, 1, "", "set_current_batch_input"], [53, 2, 1, "", "update_object"]], "RPA.Images": [[55, 0, 1, "", "Images"]], "RPA.Images.Images": [[55, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [55, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [55, 2, 1, "", "crop_image"], [55, 2, 1, "", "find_template_in_image"], [55, 2, 1, "", "get_pixel_color_in_image"], [55, 2, 1, "", "show_region_in_image"]], "RPA.JSON": [[59, 0, 1, "", "JSON"]], "RPA.JSON.JSON": [[59, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [59, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [59, 2, 1, "", "add_to_json"], [59, 2, 1, "", "convert_json_to_string"], [59, 2, 1, "", "convert_string_to_json"], [59, 2, 1, "", "delete_from_json"], [59, 2, 1, "", "get_value_from_json"], [59, 2, 1, "", "get_values_from_json"], [59, 2, 1, "", "load_json_from_file"], [59, 2, 1, "", "save_json_to_file"], [59, 2, 1, "", "update_value_to_json"]], "RPA.JavaAccessBridge": [[57, 0, 1, "", "JavaAccessBridge"]], "RPA.JavaAccessBridge.JavaAccessBridge": [[57, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [57, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [57, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [57, 2, 1, "", "application_refresh"], [57, 2, 1, "", "call_element_action"], [57, 2, 1, "", "click_coordinates"], [57, 2, 1, "", "click_element"], [57, 2, 1, "", "click_push_button"], [57, 2, 1, "", "close_java_window"], [57, 2, 1, "", "get_element_actions"], [57, 2, 1, "", "get_element_text"], [57, 2, 1, "", "get_elements"], [57, 2, 1, "", "get_locator_tree"], [57, 2, 1, "", "get_version_info"], [57, 2, 1, "", "highlight_element"], [57, 2, 1, "", "list_java_windows"], [57, 2, 1, "", "press_keys"], [57, 2, 1, "", "print_element_tree"], [57, 2, 1, "", "print_locator_tree"], [57, 2, 1, "", "read_table"], [57, 2, 1, "", "refresh_element"], [57, 2, 1, "", "select_menu"], [57, 2, 1, "", "select_window"], [57, 2, 1, "", "select_window_by_pid"], [57, 2, 1, "", "select_window_by_title"], [57, 2, 1, "", "set_display_scale_factor"], [57, 2, 1, "", "set_mouse_position"], [57, 2, 1, "", "shutdown_jab"], [57, 2, 1, "", "toggle_drop_down"], [57, 2, 1, "", "type_text"], [57, 2, 1, "", "wait_until_element_exists"], [57, 2, 1, "", "wait_until_element_is_focused"], [57, 2, 1, "", "wait_until_element_text_contains"], [57, 2, 1, "", "wait_until_element_text_equals"]], "RPA.MFA": [[61, 0, 1, "", "MFA"]], "RPA.MFA.MFA": [[61, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [61, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [61, 2, 1, "", "generate_oauth_url"], [61, 2, 1, "", "get_counter_based_otp"], [61, 2, 1, "", "get_oauth_token"], [61, 2, 1, "", "get_time_based_otp"], [61, 3, 1, "", "oauth"], [61, 2, 1, "", "refresh_oauth_token"], [61, 2, 1, "", "set_counter_based_otp"], [61, 2, 1, "", "set_time_based_otp"], [61, 2, 1, "", "use_mfa_secret_from_vault"]], "RPA.MSGraph": [[63, 0, 1, "", "MSGraph"]], "RPA.MSGraph.MSGraph": [[63, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [63, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [63, 2, 1, "", "authorize_and_get_token"], [63, 2, 1, "", "configure_msgraph_client"], [63, 2, 1, "", "create_sharepoint_list"], [63, 2, 1, "", "download_file_from_onedrive"], [63, 2, 1, "", "download_file_from_share_link"], [63, 2, 1, "", "download_file_from_sharepoint"], [63, 2, 1, "", "download_folder_from_onedrive"], [63, 2, 1, "", "find_onedrive_file"], [63, 2, 1, "", "generate_oauth_authorization_url"], [63, 2, 1, "", "get_drive_instance"], [63, 2, 1, "", "get_file_instance"], [63, 2, 1, "", "get_folder_instance"], [63, 2, 1, "", "get_items_from_sharepoint_list"], [63, 2, 1, "", "get_me"], [63, 2, 1, "", "get_scopes"], [63, 2, 1, "", "get_sharepoint_site"], [63, 2, 1, "", "list_files_in_onedrive_folder"], [63, 2, 1, "", "list_files_in_sharepoint_site_drive"], [63, 2, 1, "", "list_sharepoint_site_drives"], [63, 2, 1, "", "refresh_oauth_token"], [63, 2, 1, "", "search_for_users"], [63, 2, 1, "", "upload_file_to_onedrive"]], "RPA.Netsuite": [[65, 0, 1, "", "Netsuite"]], "RPA.Netsuite.Netsuite": [[65, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [65, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [65, 2, 1, "", "connect"], [65, 2, 1, "", "get_accounts"], [65, 2, 1, "", "get_classifications"], [65, 2, 1, "", "get_currencies"], [65, 2, 1, "", "get_currency"], [65, 2, 1, "", "get_departments"], [65, 2, 1, "", "get_locations"], [65, 2, 1, "", "get_vendor_bills"], [65, 2, 1, "", "get_vendors"], [65, 2, 1, "", "login"], [65, 2, 1, "", "netsuite_get"], [65, 2, 1, "", "netsuite_get_all"], [65, 2, 1, "", "netsuite_search"], [65, 2, 1, "", "netsuite_search_all"]], "RPA.Notifier": [[67, 0, 1, "", "Notifier"]], "RPA.Notifier.Notifier": [[67, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [67, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [67, 2, 1, "", "generic_notify"], [67, 2, 1, "", "notify_email"], [67, 2, 1, "", "notify_gmail"], [67, 2, 1, "", "notify_pushover"], [67, 2, 1, "", "notify_slack"], [67, 2, 1, "", "notify_telegram"], [67, 2, 1, "", "notify_twilio"]], "RPA.OpenAI": [[69, 0, 1, "", "OpenAI"]], "RPA.OpenAI.OpenAI": [[69, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [69, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [69, 2, 1, "", "authorize_to_azure_openai"], [69, 2, 1, "", "authorize_to_openai"], [69, 2, 1, "", "chat_completion_create"], [69, 2, 1, "", "completion_create"], [69, 2, 1, "", "image_create"], [69, 2, 1, "", "image_create_variation"]], "RPA.Outlook.Application": [[71, 0, 1, "", "Application"]], "RPA.Outlook.Application.Application": [[71, 1, 1, "", "APP_DISPATCH"], [71, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [71, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [71, 3, 1, "", "app"], [71, 2, 1, "", "close_document"], [71, 2, 1, "", "get_emails"], [71, 2, 1, "", "mark_email_as_read"], [71, 2, 1, "", "move_emails"], [71, 2, 1, "", "open_application"], [71, 2, 1, "", "quit_application"], [71, 2, 1, "", "save_email_attachments"], [71, 2, 1, "", "send_email"], [71, 2, 1, "", "set_object_property"], [71, 2, 1, "", "wait_for_email"]], "RPA.PDF": [[73, 0, 1, "", "PDF"]], "RPA.PDF.PDF": [[73, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [73, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [73, 2, 1, "", "add_library_components"], [73, 2, 1, "", "get_keyword_arguments"], [73, 2, 1, "", "get_keyword_documentation"], [73, 2, 1, "", "get_keyword_names"], [73, 2, 1, "", "get_keyword_source"], [73, 2, 1, "", "get_keyword_tags"], [73, 2, 1, "", "get_keyword_types"], [73, 2, 1, "", "run_keyword"]], "RPA.Robocorp.Process": [[75, 0, 1, "", "Process"]], "RPA.Robocorp.Process.Process": [[75, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [75, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [75, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [75, 3, 1, "", "base_api"], [75, 2, 1, "", "create_input_work_item"], [75, 2, 1, "", "get_process_id_by_name"], [75, 2, 1, "", "get_process_run_status"], [75, 2, 1, "", "get_robot_run_artifact"], [75, 2, 1, "", "get_work_item"], [75, 3, 1, "", "headers"], [75, 2, 1, "", "list_process_run_work_items"], [75, 2, 1, "", "list_process_runs"], [75, 2, 1, "", "list_process_runs_in_workspace"], [75, 2, 1, "", "list_process_work_items"], [75, 2, 1, "", "list_processes"], [75, 2, 1, "", "list_run_artifacts"], [75, 2, 1, "", "process_api"], [75, 2, 1, "", "register_file_upload"], [75, 2, 1, "", "retry_work_item"], [75, 2, 1, "", "set_apikey"], [75, 2, 1, "", "set_credentials"], [75, 2, 1, "", "set_process_id"], [75, 2, 1, "", "set_workspace_id"], [75, 2, 1, "", "start_configured_process"], [75, 2, 1, "", "start_process"], [75, 2, 1, "", "upload_file_to_s3"], [75, 2, 1, "", "workspace_api"]], "RPA.Robocorp.Vault": [[79, 0, 1, "", "Vault"]], "RPA.Robocorp.Vault.Vault": [[79, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [79, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [79, 3, 1, "", "adapter"], [79, 2, 1, "", "get_secret"], [79, 2, 1, "", "set_secret"]], "RPA.Robocorp.WorkItems": [[81, 0, 1, "", "WorkItems"]], "RPA.Robocorp.WorkItems.WorkItems": [[81, 1, 1, "", "EMAIL_BODY_LOADERS"], [81, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [81, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [81, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [81, 1, 1, "", "ROBOT_LISTENER_API_VERSION"], [81, 3, 1, "", "active_input"], [81, 3, 1, "", "adapter"], [81, 2, 1, "", "add_work_item_file"], [81, 2, 1, "", "add_work_item_files"], [81, 2, 1, "", "clear_work_item"], [81, 2, 1, "", "create_output_work_item"], [81, 3, 1, "", "current"], [81, 2, 1, "", "delete_work_item_variables"], [81, 2, 1, "", "for_each_input_work_item"], [81, 2, 1, "", "get_current_work_item"], [81, 2, 1, "", "get_input_work_item"], [81, 2, 1, "", "get_work_item_file"], [81, 2, 1, "", "get_work_item_files"], [81, 2, 1, "", "get_work_item_payload"], [81, 2, 1, "", "get_work_item_variable"], [81, 2, 1, "", "get_work_item_variables"], [81, 1, 1, "", "inputs"], [81, 2, 1, "", "list_work_item_files"], [81, 2, 1, "", "list_work_item_variables"], [81, 1, 1, "", "outputs"], [81, 2, 1, "", "release_input_work_item"], [81, 2, 1, "", "remove_work_item_file"], [81, 2, 1, "", "remove_work_item_files"], [81, 1, 1, "", "root"], [81, 2, 1, "", "save_work_item"], [81, 2, 1, "", "set_current_work_item"], [81, 2, 1, "", "set_task_variables_from_work_item"], [81, 2, 1, "", "set_work_item_payload"], [81, 2, 1, "", "set_work_item_variable"], [81, 2, 1, "", "set_work_item_variables"]], "RPA.RobotLogListener": [[83, 0, 1, "", "RobotLogListener"]], "RPA.RobotLogListener.RobotLogListener": [[83, 1, 1, "", "INFO_LEVEL_KEYWORDS"], [83, 1, 1, "", "KEYWORDS_TO_MUTE"], [83, 1, 1, "", "KEYWORDS_TO_PROTECT"], [83, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [83, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [83, 1, 1, "", "ROBOT_LISTENER_API_VERSION"], [83, 2, 1, "", "end_keyword"], [83, 2, 1, "", "mute_run_on_failure"], [83, 2, 1, "", "only_info_level"], [83, 2, 1, "", "register_protected_keywords"], [83, 2, 1, "", "start_keyword"]], "RPA.SAP": [[87, 0, 1, "", "SAP"]], "RPA.SAP.SAP": [[87, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [87, 2, 1, "", "click_element"], [87, 2, 1, "", "click_toolbar_button"], [87, 2, 1, "", "connect_to_existing_connection"], [87, 2, 1, "", "connect_to_session"], [87, 2, 1, "", "disable_screenshots_on_error"], [87, 2, 1, "", "doubleclick_element"], [87, 2, 1, "", "element_should_be_present"], [87, 2, 1, "", "element_value_should_be"], [87, 2, 1, "", "element_value_should_contain"], [87, 2, 1, "", "enable_screenshots_on_error"], [87, 2, 1, "", "focus_and_click"], [87, 2, 1, "", "focus_and_input_text"], [87, 2, 1, "", "generic_click_element"], [87, 2, 1, "", "generic_input_password"], [87, 2, 1, "", "generic_input_text"], [87, 2, 1, "", "get_cell_value"], [87, 2, 1, "", "get_element_location"], [87, 2, 1, "", "get_element_type"], [87, 2, 1, "", "get_element_type_of_object"], [87, 2, 1, "", "get_row_count"], [87, 2, 1, "", "get_scroll_position"], [87, 2, 1, "", "get_statusbar_type"], [87, 2, 1, "", "get_value"], [87, 2, 1, "", "get_window_title"], [87, 2, 1, "", "input_password"], [87, 2, 1, "", "input_text"], [87, 2, 1, "", "maximize_window"], [87, 2, 1, "", "open_connection"], [87, 2, 1, "", "press_f1"], [87, 2, 1, "", "press_f4"], [87, 2, 1, "", "run_transaction"], [87, 2, 1, "", "scroll"], [87, 2, 1, "", "select_checkbox"], [87, 2, 1, "", "select_context_menu_item"], [87, 2, 1, "", "select_from_list_by_label"], [87, 2, 1, "", "select_node"], [87, 2, 1, "", "select_node_link"], [87, 2, 1, "", "select_radio_button"], [87, 2, 1, "", "select_table_column"], [87, 2, 1, "", "select_table_row"], [87, 2, 1, "", "send_vkey"], [87, 2, 1, "", "set_cell_value"], [87, 2, 1, "", "set_explicit_wait"], [87, 2, 1, "", "set_focus"], [87, 2, 1, "", "take_screenshot"], [87, 2, 1, "", "unselect_checkbox"]], "RPA.Salesforce": [[85, 0, 1, "", "Salesforce"]], "RPA.Salesforce.Salesforce": [[85, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [85, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [85, 1, 1, "", "account"], [85, 2, 1, "", "add_product_into_opportunity"], [85, 2, 1, "", "auth_with_connected_app"], [85, 2, 1, "", "auth_with_token"], [85, 2, 1, "", "create_new_opportunity"], [85, 2, 1, "", "create_salesforce_object"], [85, 2, 1, "", "delete_salesforce_object"], [85, 2, 1, "", "describe_salesforce_object"], [85, 2, 1, "", "execute_apex"], [85, 2, 1, "", "execute_dataloader_insert"], [85, 2, 1, "", "get_dataloader_error_table"], [85, 2, 1, "", "get_dataloader_success_table"], [85, 2, 1, "", "get_domain"], [85, 2, 1, "", "get_opportunity_id"], [85, 2, 1, "", "get_pricebook_entries"], [85, 2, 1, "", "get_pricebook_id"], [85, 2, 1, "", "get_products_in_pricelist"], [85, 2, 1, "", "get_salesforce_object_by_id"], [85, 2, 1, "", "get_salesforce_object_metadata"], [85, 3, 1, "", "instance"], [85, 2, 1, "", "read_dictionary_from_file"], [85, 2, 1, "", "salesforce_query"], [85, 2, 1, "", "salesforce_query_result_as_table"], [85, 3, 1, "", "session_id"], [85, 2, 1, "", "set_account"], [85, 2, 1, "", "set_domain"], [85, 2, 1, "", "set_pricebook"], [85, 2, 1, "", "update_salesforce_object"], [85, 2, 1, "", "upsert_salesforce_object"]], "RPA.Slack": [[89, 0, 1, "", "Slack"]], "RPA.Slack.Slack": [[89, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [89, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [89, 2, 1, "", "slack_message_using_webhook"], [89, 2, 1, "", "slack_raw_message"]], "RPA.Smartsheet": [[91, 0, 1, "", "Smartsheet"]], "RPA.Smartsheet.Smartsheet": [[91, 1, 1, "", "ROBOT_AUTO_KEYWORDS"], [91, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [91, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [91, 1, 1, "", "ROW_EXCLUDES"], [91, 1, 1, "", "ROW_INCLUDES"], [91, 1, 1, "", "SEARCH_INCLUDES"], [91, 1, 1, "", "SEARCH_SCOPES"], [91, 1, 1, "", "SHEET_INCLUDES"], [91, 2, 1, "", "add_column"], [91, 2, 1, "", "add_columns"], [91, 2, 1, "", "add_rows"], [91, 2, 1, "", "convert_row_to_dict"], [91, 2, 1, "", "convert_sheet_to_table"], [91, 2, 1, "", "create_sheet"], [91, 2, 1, "", "download_attachment"], [91, 2, 1, "", "get_application_constants"], [91, 2, 1, "", "get_cell_history"], [91, 2, 1, "", "get_current_user"], [91, 2, 1, "", "get_row"], [91, 2, 1, "", "get_sheet"], [91, 2, 1, "", "get_sheet_owner"], [91, 2, 1, "", "list_attachments"], [91, 2, 1, "", "list_columns"], [91, 2, 1, "", "list_sheet_filters"], [91, 2, 1, "", "list_sheets"], [91, 2, 1, "", "refresh_sheet"], [91, 2, 1, "", "search"], [91, 2, 1, "", "set_access_token"], [91, 2, 1, "", "set_max_retry_time"], [91, 2, 1, "", "set_row"], [91, 2, 1, "", "set_rows"], [91, 3, 1, "", "sheets"], [91, 2, 1, "", "unselect_current_sheet"], [91, 2, 1, "", "update_column"]], "RPA.Tables": [[93, 0, 1, "", "Tables"]], "RPA.Tables.Tables": [[93, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [93, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [93, 2, 1, "", "add_table_column"], [93, 2, 1, "", "add_table_row"], [93, 2, 1, "", "clear_table"], [93, 2, 1, "", "copy_table"], [93, 2, 1, "", "create_table"], [93, 2, 1, "", "export_table"], [93, 2, 1, "", "filter_empty_rows"], [93, 2, 1, "", "filter_table_by_column"], [93, 2, 1, "", "filter_table_with_keyword"], [93, 2, 1, "", "find_table_rows"], [93, 2, 1, "", "get_table_cell"], [93, 2, 1, "", "get_table_column"], [93, 2, 1, "", "get_table_dimensions"], [93, 2, 1, "", "get_table_row"], [93, 2, 1, "", "get_table_slice"], [93, 2, 1, "", "group_table_by_column"], [93, 2, 1, "", "map_column_values"], [93, 2, 1, "", "merge_tables"], [93, 2, 1, "", "pop_table_column"], [93, 2, 1, "", "pop_table_row"], [93, 2, 1, "", "read_table_from_csv"], [93, 2, 1, "", "rename_table_columns"], [93, 2, 1, "", "set_row_as_column_names"], [93, 2, 1, "", "set_table_cell"], [93, 2, 1, "", "set_table_column"], [93, 2, 1, "", "set_table_row"], [93, 2, 1, "", "sort_table_by_column"], [93, 2, 1, "", "table_head"], [93, 2, 1, "", "table_tail"], [93, 2, 1, "", "trim_column_names"], [93, 2, 1, "", "trim_empty_rows"], [93, 2, 1, "", "write_table_to_csv"]], "RPA.Twitter": [[96, 0, 1, "", "Twitter"]], "RPA.Twitter.Twitter": [[96, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [96, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [96, 2, 1, "", "authorize"], [96, 2, 1, "", "follow"], [96, 2, 1, "", "get_me"], [96, 2, 1, "", "get_user_profile"], [96, 2, 1, "", "get_user_tweets"], [96, 2, 1, "", "like"], [96, 2, 1, "", "text_search_tweets"], [96, 2, 1, "", "tweet"], [96, 2, 1, "", "unfollow"], [96, 2, 1, "", "unlike"]], "RPA.Windows": [[98, 0, 1, "", "Windows"]], "RPA.Windows.Windows": [[98, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [98, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [98, 1, 1, "", "SIMULATE_MOVE"], [98, 2, 1, "", "add_library_components"], [98, 2, 1, "", "get_keyword_arguments"], [98, 2, 1, "", "get_keyword_documentation"], [98, 2, 1, "", "get_keyword_names"], [98, 2, 1, "", "get_keyword_source"], [98, 2, 1, "", "get_keyword_tags"], [98, 2, 1, "", "get_keyword_types"], [98, 2, 1, "", "run_keyword"]], "RPA.Word.Application": [[100, 0, 1, "", "Application"]], "RPA.Word.Application.Application": [[100, 1, 1, "", "APP_DISPATCH"], [100, 1, 1, "", "FILEFORMATS"], [100, 1, 1, "", "ROBOT_LIBRARY_DOC_FORMAT"], [100, 1, 1, "", "ROBOT_LIBRARY_SCOPE"], [100, 3, 1, "", "app"], [100, 2, 1, "", "close_document"], [100, 2, 1, "", "copy_selection_to_clipboard"], [100, 2, 1, "", "create_new_document"], [100, 2, 1, "", "export_to_pdf"], [100, 2, 1, "", "find_text"], [100, 2, 1, "", "get_all_texts"], [100, 2, 1, "", "get_current_line"], [100, 2, 1, "", "get_number_of_lines"], [100, 2, 1, "", "move_horizontally"], [100, 2, 1, "", "move_to_end"], [100, 2, 1, "", "move_to_line_end"], [100, 2, 1, "", "move_to_line_start"], [100, 2, 1, "", "move_to_top"], [100, 2, 1, "", "move_vertically"], [100, 2, 1, "", "open_application"], [100, 2, 1, "", "open_file"], [100, 2, 1, "", "paste_from_clipboard"], [100, 2, 1, "", "quit_application"], [100, 2, 1, "", "replace_text"], [100, 2, 1, "", "save_document"], [100, 2, 1, "", "save_document_as"], [100, 2, 1, "", "select_current_paragraph"], [100, 2, 1, "", "select_paragraph"], [100, 2, 1, "", "set_footer"], [100, 2, 1, "", "set_header"], [100, 2, 1, "", "set_object_property"], [100, 2, 1, "", "write_text"]]}, "objtypes": {"0": "py:class", "1": "py:attribute", "2": "py:method", "3": "py:property"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "attribute", "Python attribute"], "2": ["py", "method", "Python method"], "3": ["py", "property", "Python property"]}, "titleterms": {"project": [0, 3], "convent": 0, "name": 0, "version": [0, 102], "control": [0, 53], "avail": 0, "document": [0, 3], "code": 0, "format": 0, "test": 0, "continu": 0, "integr": 0, "chang": 0, "log": 0, "other": 0, "issu": 0, "type": [0, 53], "hint": 0, "contribut": [1, 3], "guid": 1, "report": 1, "bug": 1, "request": 1, "enhanc": 1, "submit": 1, "content": [1, 3], "todo": 2, "rpa": [2, 3, 101, 102], "databas": [2, 22, 23], "desktop": [2, 24, 25, 26, 28, 30], "window": [2, 30, 31, 97, 98], "keyword": [2, 4, 6, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 95, 97, 99], "applic": [2, 42, 43, 70, 71, 99, 100], "finder": 2, "mous": 2, "screen": 2, "email": [2, 38, 40], "exchang": [2, 38, 39], "imapsmtp": [2, 40, 41], "excel": [2, 42, 43, 44, 45, 100], "file": [2, 44, 45], "filesystem": [2, 46, 47], "json": [2, 58, 59], "javaaccessbridg": [2, 56, 57], "msgraph": [2, 62, 63], "robocorp": [2, 74, 76, 78, 80], "process": [2, 74, 75], "smartsheet": [2, 90, 91], "task": [2, 94], "framework": [3, 101, 102], "tabl": [3, 92, 93], "introduct": 3, "link": 3, "packag": [3, 102], "librari": 3, "instal": [3, 9], "browser": [3, 8, 9, 10, 11], "playwright": [3, 9], "exampl": [3, 59], "support": [3, 59], "contact": 3, "develop": 3, "licens": 3, "indic": 3, "archiv": [4, 5], "python": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100], "api": [5, 7, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 96, 98, 100], "assist": [6, 7], "instruct": 9, "conda": 9, "yaml": 9, "pip": 9, "selenium": [10, 11], "calendar": [12, 13], "cloud": [14, 16, 18], "aw": [14, 15], "azur": [16, 17], "googl": [18, 19, 102], "crypto": [20, 21], "clipboard": [26, 27], "operatingsystem": [28, 29], "documentai": [32, 33, 34, 36], "base64ai": [34, 35], "nanonet": [36, 37], "ftp": [48, 49], "http": [50, 51], "hubspot": [52, 53], "us": 53, "date": 53, "time": 53, "when": 53, "search": 53, "batch": 53, "input": 53, "inform": [53, 59], "cach": 53, "custom": 53, "object": [53, 91], "refer": 53, "attribut": 53, "access": 53, "definit": 53, "simplepublicobject": 53, "simplepublicobjectwithassoci": 53, "associatedid": 53, "collectionresponseassociatedid": 53, "pipelin": 53, "pipelinestag": 53, "publicown": 53, "publicteam": 53, "return": 53, "properti": 53, "associ": 53, "text": 53, "base": 53, "queri": 53, "imag": [54, 55], "serial": 59, "about": 59, "jsonpath": 59, "syntax": 59, "express": 59, "function": 59, "addit": 59, "mfa": [60, 61], "netsuit": [64, 65], "notifi": [66, 67], "openai": [68, 69], "outlook": [70, 71], "pdf": [72, 73], "storag": 76, "secret": [77, 79], "vault": 78, "workitem": 80, "robotloglisten": [82, 83], "salesforc": [84, 85], "sap": [86, 87], "slack": [88, 89], "get": 91, "start": 91, "work": 91, "sheet": 91, "nativ": 91, "twitter": [95, 96], "word": 99, "robo": [101, 102], "releas": 102, "note": 102, "latest": 102, "upcom": 102, "28": 102, "6": 102, "4": 102, "04": 102, "dec": 102, "2024": 102, "3": 102, "17": 102, "sep": 102, "2": 102, "08": 102, "aug": 102, "1": 102, "jul": 102, "0": 102, "mai": 102, "5": 102, "05": 102, "apr": 102, "03": 102, "19": 102, "mar": 102, "14": 102, "22": 102, "feb": 102, "02": 102, "jan": 102, "12": 102, "18": 102, "2023": 102, "27": 102, "7": 102, "21": 102, "nov": 102, "15": 102, "10": 102, "06": 102, "01": 102, "24": 102, "oct": 102, "13": 102, "11": 102, "29": 102, "26": 102, "07": 102, "25": 102, "23": 102, "jun": 102, "09": 102, "20": 102, "2022": 102, "30": 102, "16": 102, "31": 102, "9": 102, "8": 102, "secur": 102, "all": 102, "2021": 102, "rpaframework": 102}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.todo": 2, "sphinx": 57}, "alltitles": {"Project conventions": [[0, "project-conventions"]], "Naming": [[0, "naming"]], "Version Control": [[0, "version-control"]], "Availability": [[0, "availability"]], "Documentation": [[0, "documentation"], [3, "documentation"]], "Code Formatting": [[0, "code-formatting"]], "Testing": [[0, "testing"]], "Continuous Integration": [[0, "continuous-integration"]], "Change Log": [[0, "change-log"]], "Versioning": [[0, "versioning"]], "Other issues": [[0, "other-issues"]], "Type hinting": [[0, "type-hinting"]], "Contribution guide": [[1, "contribution-guide"]], "Reporting bugs": [[1, "reporting-bugs"]], "Requesting enhancements": [[1, "requesting-enhancements"]], "Submitting content": [[1, "submitting-content"]], "TODO": [[2, "todo"]], "RPA.Database:": [[2, "rpa-database"]], "RPA.Desktop.Windows:": [[2, "rpa-desktop-windows"]], "RPA.Desktop.keywords.application:": [[2, "rpa-desktop-keywords-application"]], "RPA.Desktop.keywords.finder:": [[2, "rpa-desktop-keywords-finder"]], "RPA.Desktop.keywords.mouse:": [[2, "rpa-desktop-keywords-mouse"]], "RPA.Desktop.keywords.screen:": [[2, "rpa-desktop-keywords-screen"]], "RPA.Email.Exchange:": [[2, "rpa-email-exchange"]], "RPA.Email.ImapSmtp:": [[2, "rpa-email-imapsmtp"]], "RPA.Excel.Files:": [[2, "rpa-excel-files"]], "RPA.FileSystem:": [[2, "rpa-filesystem"]], "RPA.JSON:": [[2, "rpa-json"]], "RPA.JavaAccessBridge:": [[2, "rpa-javaaccessbridge"]], "RPA.MSGraph:": [[2, "rpa-msgraph"]], "RPA.Robocorp.Process:": [[2, "rpa-robocorp-process"]], "RPA.Smartsheet:": [[2, "rpa-smartsheet"]], "RPA.Tasks:": [[2, "rpa-tasks"]], "RPA.application:": [[2, "rpa-application"]], "RPA Framework": [[3, "rpa-framework"], [101, "id2"], [102, "id2"]], "Table of Contents": [[3, "table-of-contents"]], "Introduction": [[3, "introduction"]], "Links": [[3, "links"]], "Packages": [[3, "packages"]], "Libraries": [[3, "libraries"], [3, null]], "Installation of RPA.Browser.Playwright": [[3, "installation-of-rpa-browser-playwright"]], "Installation": [[3, "installation"]], "Example": [[3, "example"]], "Support and contact": [[3, "support-and-contact"]], "Contributing": [[3, "contributing"]], "Development": [[3, "development"]], "License": [[3, "license"]], "Project": [[3, null]], "Indices and tables": [[3, "indices-and-tables"]], "Archive": [[4, "archive"], [5, "archive"]], "Keywords": [[4, "keywords"], [6, "keywords"], [9, "keywords"], [10, "keywords"], [12, "keywords"], [14, "keywords"], [16, "keywords"], [18, "keywords"], [20, "keywords"], [22, "keywords"], [24, "keywords"], [26, "keywords"], [28, "keywords"], [30, "keywords"], [32, "keywords"], [34, "keywords"], [36, "keywords"], [38, "keywords"], [40, "keywords"], [42, "keywords"], [44, "keywords"], [46, "keywords"], [48, "keywords"], [50, "keywords"], [52, "keywords"], [54, "keywords"], [56, "keywords"], [58, "keywords"], [60, "keywords"], [62, "keywords"], [64, "keywords"], [66, "keywords"], [68, "keywords"], [70, "keywords"], [72, "keywords"], [74, "keywords"], [76, "keywords"], [78, "keywords"], [80, "keywords"], [82, "keywords"], [84, "keywords"], [86, "keywords"], [88, "keywords"], [90, "keywords"], [92, "keywords"], [94, "keywords"], [95, "keywords"], [97, "keywords"], [99, "keywords"]], "Python API": [[5, "python-api"], [7, "python-api"], [11, "python-api"], [13, "python-api"], [15, "python-api"], [17, "python-api"], [19, "python-api"], [21, "python-api"], [23, "python-api"], [25, "python-api"], [27, "python-api"], [29, "python-api"], [31, "python-api"], [33, "python-api"], [35, "python-api"], [37, "python-api"], [39, "python-api"], [41, "python-api"], [43, "python-api"], [45, "python-api"], [47, "python-api"], [49, "python-api"], [51, "python-api"], [53, "python-api"], [55, "python-api"], [57, "python-api"], [59, "python-api"], [61, "python-api"], [63, "python-api"], [65, "python-api"], [67, "python-api"], [69, "python-api"], [71, "python-api"], [73, "python-api"], [75, "python-api"], [77, "python-api"], [79, "python-api"], [81, "python-api"], [83, "python-api"], [85, "python-api"], [87, "python-api"], [89, "python-api"], [91, "python-api"], [93, "python-api"], [96, "python-api"], [98, "python-api"], [100, "python-api"]], "Assistant": [[6, "assistant"], [7, "assistant"]], "Browser": [[8, "browser"]], "Browser.Playwright": [[9, "browser-playwright"]], "Install instructions": [[9, "install-instructions"]], "conda.yaml": [[9, "conda-yaml"]], "pip": [[9, "pip"]], "Browser.Selenium": [[10, "browser-selenium"], [11, "browser-selenium"]], "}": [[11, "id11"]], "Calendar": [[12, "calendar"], [13, "calendar"]], "Cloud.AWS": [[14, "cloud-aws"]], "AWS": [[15, "aws"]], "Cloud.Azure": [[16, "cloud-azure"]], "Azure": [[17, "azure"]], "Cloud.Google": [[18, "cloud-google"]], "Google": [[19, "google"]], "Crypto": [[20, "crypto"], [21, "crypto"]], "Database": [[22, "database"], [23, "database"]], "Desktop": [[24, "desktop"], [25, "desktop"]], "Desktop.Clipboard": [[26, "desktop-clipboard"]], "Clipboard": [[27, "clipboard"]], "Desktop.OperatingSystem": [[28, "desktop-operatingsystem"]], "OperatingSystem": [[29, "operatingsystem"]], "Desktop.Windows": [[30, "desktop-windows"]], "Windows": [[31, "windows"], [97, "windows"], [98, "windows"]], "DocumentAI": [[32, "documentai"], [33, "documentai"]], "DocumentAI.Base64AI": [[34, "documentai-base64ai"]], "Base64AI": [[35, "base64ai"]], "DocumentAI.Nanonets": [[36, "documentai-nanonets"]], "Nanonets": [[37, "nanonets"]], "Email.Exchange": [[38, "email-exchange"]], "Exchange": [[39, "exchange"]], "Email.ImapSmtp": [[40, "email-imapsmtp"]], "ImapSmtp": [[41, "imapsmtp"]], "Excel.Application": [[42, "excel-application"], [43, "excel-application"], [100, "excel-application"]], "Excel.Files": [[44, "excel-files"], [45, "excel-files"]], "FileSystem": [[46, "filesystem"], [47, "filesystem"]], "FTP": [[48, "ftp"], [49, "ftp"]], "HTTP": [[50, "http"], [51, "http"]], "HubSpot": [[52, "hubspot"]], "Hubspot": [[53, "hubspot"]], "Using Date Times When Searching": [[53, "using-date-times-when-searching"]], "Batch Inputs": [[53, "batch-inputs"]], "Information Caching": [[53, "information-caching"]], "Custom Object Types": [[53, "custom-object-types"]], "HubSpot Object Reference": [[53, "hubspot-object-reference"]], "Attribute Access": [[53, "attribute-access"]], "Attribute Definitions": [[53, "attribute-definitions"]], "SimplePublicObject": [[53, "simplepublicobject"]], "SimplePublicObjectWithAssociations": [[53, "simplepublicobjectwithassociations"]], "AssociatedId": [[53, "associatedid"]], "CollectionResponseAssociatedId": [[53, "collectionresponseassociatedid"]], "Pipeline": [[53, "pipeline"]], "PipelineStage": [[53, "pipelinestage"]], "PublicOwner": [[53, "publicowner"]], "PublicTeam": [[53, "publicteam"]], "Object Searching": [[53, "object-searching"]], "Controlling Returned Properties": [[53, "controlling-returned-properties"]], "Using Associations": [[53, "using-associations"]], "Text-based Search Query": [[53, "text-based-search-query"]], "Images": [[54, "images"], [55, "images"]], "JavaAccessBridge": [[56, "javaaccessbridge"], [57, "javaaccessbridge"]], "JSON": [[58, "json"], [59, "json"]], "Serialization": [[59, "serialization"]], "About JSONPath": [[59, "about-jsonpath"]], "Syntax example": [[59, "syntax-example"]], "Supported Expressions": [[59, "supported-expressions"]], "Functions": [[59, "functions"]], "Additional Information": [[59, "additional-information"]], "MFA": [[60, "mfa"], [61, "mfa"]], "MSGraph": [[62, "msgraph"], [63, "msgraph"]], "Netsuite": [[64, "netsuite"], [65, "netsuite"]], "Notifier": [[66, "notifier"], [67, "notifier"]], "OpenAI": [[68, "openai"], [69, "openai"]], "Outlook.Application": [[70, "outlook-application"], [71, "outlook-application"]], "PDF": [[72, "pdf"], [73, "pdf"]], "Robocorp.Process": [[74, "robocorp-process"]], "Process": [[75, "process"]], "Robocorp.Storage": [[76, "robocorp-storage"]], "Secrets": [[77, "secrets"], [79, "secrets"]], "Robocorp.Vault": [[78, "robocorp-vault"]], "Robocorp.WorkItems": [[80, "robocorp-workitems"]], "RobotLogListener": [[82, "robotloglistener"], [83, "robotloglistener"]], "Salesforce": [[84, "salesforce"], [85, "salesforce"]], "SAP": [[86, "sap"], [87, "sap"]], "Slack": [[88, "slack"], [89, "slack"]], "Smartsheet": [[90, "smartsheet"], [91, "smartsheet"]], "Getting started": [[91, "getting-started"]], "Working on a sheet": [[91, "working-on-a-sheet"]], "Native Smartsheet objects": [[91, "native-smartsheet-objects"]], "Tables": [[92, "tables"], [93, "tables"]], "Tasks": [[94, "tasks"]], "Twitter": [[95, "twitter"], [96, "twitter"]], "Word.Application": [[99, "word-application"]], "Robo": [[101, "id1"], [102, "id1"]], "Release notes": [[102, "release-notes"]], "Latest versions": [[102, "latest-versions"]], "Upcoming release": [[102, "id3"]], "28.6.4 - 04 Dec 2024": [[102, "dec-2024"]], "Released": [[102, "id4"]], "28.6.3 - 17 Sep 2024": [[102, "sep-2024"]], "28.6.2 - 08 Aug 2024": [[102, "aug-2024"]], "28.6.1 - 04 Jul 2024": [[102, "jul-2024"]], "28.6.0 - 17 May 2024": [[102, "may-2024"]], "28.5.1 - 05 Apr 2024": [[102, "apr-2024"]], "28.5.0 - 05 Apr 2024": [[102, "id5"]], "04 Apr 2024": [[102, "id6"]], "03 Apr 2024": [[102, "id7"]], "28.4.1 - 19 Mar 2024": [[102, "mar-2024"]], "28.4.0 - 14 Mar 2024": [[102, "id8"]], "28.3.0 - 22 Feb 2024": [[102, "feb-2024"]], "28.2.0 - 02 Feb 2024": [[102, "id9"]], "17 Jan 2024": [[102, "jan-2024"]], "28.1.0 - 12 Jan 2024": [[102, "id10"]], "28.0.0 - 18 Dec 2023": [[102, "dec-2023"]], "27.7.0 - 21 Nov 2023": [[102, "nov-2023"]], "27.6.0 - 15 Nov 2023": [[102, "id11"]], "27.5.3 - 10 Nov 2023": [[102, "id12"]], "27.5.2 - 06 Nov 2023": [[102, "id13"]], "27.5.1 - 01 Nov 2023": [[102, "id14"]], "27.5.0 - 24 Oct 2023": [[102, "oct-2023"]], "27.4.2 - 13 Oct 2023": [[102, "id15"]], "27.4.1 - 11 Oct 2023": [[102, "id16"]], "27.4.0 - 11 Oct 2023": [[102, "id17"]], "27.3.1 - 10 Oct 2023": [[102, "id18"]], "06 Oct 2023": [[102, "id19"]], "27.3.0 - 29 Sep 2023": [[102, "sep-2023"]], "27 Sep 2023": [[102, "id20"]], "27.2.0 - 26 Sep 2023": [[102, "id21"]], "27.1.0 - 15 Sep 2023": [[102, "id22"]], "14 Sep 2023": [[102, "id23"]], "27.0.1 - 11 Sep 2023": [[102, "id24"]], "27.0.0 - 07 Sep 2023": [[102, "id25"]], "26.1.1 - 07 Sep 2023": [[102, "id26"]], "04 Sep 2023": [[102, "id27"]], "24 Aug 2023": [[102, "aug-2023"]], "26.1.0 - 24 Aug 2023": [[102, "id28"]], "26.0.3 - 24 Aug 2023": [[102, "id29"]], "26.0.2 - 24 Aug 2023": [[102, "id30"]], "26.0.1 - 22 Aug 2023": [[102, "id31"]], "26.0.0 - 18 Aug 2023": [[102, "id32"]], "25.0.1 - 11 Aug 2023": [[102, "id33"]], "25.0.0 - 10 Aug 2023": [[102, "id34"]], "24.1.2 - 27 Jul 2023": [[102, "jul-2023"]], "24.1.1 - 26 Jul 2023": [[102, "id35"]], "24.1.0 - 25 Jul 2023": [[102, "id36"]], "24.0.0 - 18 Jul 2023": [[102, "id37"]], "23.5.2 - 29 Jun 2023": [[102, "jun-2023"]], "23.5.1 - 28 Jun 2023": [[102, "id38"]], "23.5.0 - 27 Jun 2023": [[102, "id39"]], "23.4.0 - 22 Jun 2023": [[102, "id40"]], "09 Jun 2023": [[102, "id41"]], "23.3.0 - 09 Jun 2023": [[102, "id42"]], "23.2.1 - 02 Jun 2023": [[102, "id43"]], "23.2.0 - 02 Jun 2023": [[102, "id44"]], "01 Jun 2023": [[102, "id45"]], "23.1.0 - 19 May 2023": [[102, "may-2023"]], "12 May 2023": [[102, "id46"]], "23.0.0 - 05 May 2023": [[102, "id47"]], "04 May 2023": [[102, "id48"]], "22.5.3 - 02 May 2023": [[102, "id49"]], "22.5.2 - 13 Apr 2023": [[102, "apr-2023"]], "22.5.1 - 07 Apr 2023": [[102, "id50"]], "22.5.0 - 05 Apr 2023": [[102, "id51"]], "04 Apr 2023": [[102, "id52"]], "22.4.0 - 29 Mar 2023": [[102, "mar-2023"]], "22.3.0 - 22 Mar 2023": [[102, "id53"]], "22.2.3 - 15 Mar 2023": [[102, "id54"]], "14 Mar 2023": [[102, "id55"]], "22.2.2 - 13 Mar 2023": [[102, "id56"]], "22.2.1 - 09 Mar 2023": [[102, "id57"]], "22.2.0 - 09 Mar 2023": [[102, "id58"]], "08 Mar 2023": [[102, "id59"]], "22.1.1 - 06 Mar 2023": [[102, "id60"]], "22.1.0 - 06 Mar 2023": [[102, "id61"]], "22.0.1 - 03 Mar 2023": [[102, "id62"]], "02 Mar 2023": [[102, "id63"]], "28 Feb 2023": [[102, "feb-2023"]], "22 Feb 2023": [[102, "id64"]], "21 Feb 2023": [[102, "id65"]], "22.0.0 - 20 Feb 2023": [[102, "id66"]], "20 Feb 2023": [[102, "id67"]], "17 Feb 2023": [[102, "id68"]], "21.1.1 - 15 Feb 2023": [[102, "id69"]], "21.1.0 - 09 Feb 2023": [[102, "id70"]], "08 Feb 2023": [[102, "id71"]], "21.0.1 - 03 Feb 2023": [[102, "id72"]], "21.0.0 - 01 Feb 2023": [[102, "id73"]], "20.1.2 - 26 Jan 2023": [[102, "jan-2023"]], "20.1.1 - 26 Jan 2023": [[102, "id74"]], "20.1.0 - 19 Jan 2023": [[102, "id75"]], "20.0.2 - 10 Jan 2023": [[102, "id76"]], "20.0.1 - 10 Jan 2023": [[102, "id77"]], "20.0.0 - 09 Jan 2023": [[102, "id78"]], "19.4.2 - 21 Dec 2022": [[102, "dec-2022"]], "19.4.1 - 09 Dec 2022": [[102, "id79"]], "19.4.0 - 08 Dec 2022": [[102, "id80"]], "19.3.1 - 29 Nov 2022": [[102, "nov-2022"]], "19.3.0 - 28 Nov 2022": [[102, "id81"]], "19.2.0 - 17 Nov 2022": [[102, "id82"]], "19.1.2 - 17 Nov 2022": [[102, "id83"]], "19.1.1 - 04 Nov 2022": [[102, "id84"]], "19.1.0 - 03 Nov 2022": [[102, "id85"]], "19.0.0 - 27 Oct 2022": [[102, "oct-2022"]], "18.0.0 - 17 Oct 2022": [[102, "id86"]], "17.7.0 - 14 Oct 2022": [[102, "id87"]], "17.6.0 - 12 Oct 2022": [[102, "id88"]], "17.5.1 - 11 Oct 2022": [[102, "id89"]], "17.5.0 - 07 Oct 2022": [[102, "id90"]], "17.4.0 - 06 Oct 2022": [[102, "id91"]], "17.3.0 - 03 Oct 2022": [[102, "id92"]], "17.2.0 - 30 Sep 2022": [[102, "sep-2022"]], "17.1.1 - 29 Sep 2022": [[102, "id93"]], "17.1.0 - 28 Sep 2022": [[102, "id94"]], "17.0.1 - 21 Sep 2022": [[102, "id95"]], "16.3.0 - 07 Sep 2022": [[102, "id96"]], "16.2.0 - 07 Sep 2022": [[102, "id97"]], "16.1.0 - 01 Sep 2022": [[102, "id98"]], "16.0.0 - 31 Aug 2022": [[102, "aug-2022"]], "15.9.0 - 22 Aug 2022": [[102, "id99"]], "15.8.1 - 19 Aug 2022": [[102, "id100"]], "15.8.0 - 12 Aug 2022": [[102, "id101"]], "15.7.0 - 10 Aug 2022": [[102, "id102"]], "15.6.1 - 09 Aug 2022": [[102, "id103"]], "15.6.0 - 02 Aug 2022": [[102, "id104"]], "15.5.0 - 22 Jul 2022": [[102, "jul-2022"]], "15.4.0 - 13 Jul 2022": [[102, "id105"]], "15.3.0 - 08 Jul 2022": [[102, "id106"]], "15.2.0 - 05 Jul 2022": [[102, "id107"]], "15.1.4 - 23 Jun 2022": [[102, "jun-2022"]], "15.1.3 - 22 Jun 2022": [[102, "id108"]], "15.1.2 - 21 Jun 2022": [[102, "id109"]], "15.1.1 - 17 Jun 2022": [[102, "id110"]], "15.1.0 - 15 Jun 2022": [[102, "id111"]], "security release (all packages) - 27 May 2022": [[102, "security-release-all-packages-27-may-2022"]], "14.2.0 - 25 May 2022": [[102, "may-2022"]], "14.1.1 - 12 May 2022": [[102, "id112"]], "14.1.0 - 05 May 2022": [[102, "id113"]], "14.0.0 - 02 May 2022": [[102, "id114"]], "13.3.1 - 15 Apr 2022": [[102, "apr-2022"]], "13.3.0 - 14 Apr 2022": [[102, "id115"]], "13.2.0 - 08 Apr 2022": [[102, "id116"]], "13.1.0 - 07 Apr 2022": [[102, "id117"]], "13.0.3 - 05 Apr 2022": [[102, "id118"]], "13.0.2 - 04 Apr 2022": [[102, "id119"]], "13.0.1 - 01 Apr 2022": [[102, "id120"]], "13.0.0 - 28 Mar 2022": [[102, "mar-2022"]], "12.10.1 - 25 Mar 2022": [[102, "id121"]], "12.10.0 - 23 Mar 2022": [[102, "id122"]], "12.9.0 - 11 Mar 2022": [[102, "id123"]], "12.8.2 - 25 Feb 2022": [[102, "feb-2022"]], "12.8.1 - 18 Feb 2022": [[102, "id124"]], "12.8.0 - 10 Feb 2022": [[102, "id125"]], "12.7.0 - 10 Feb 2022": [[102, "id126"]], "12.6.1 - 08 Feb 2022": [[102, "id127"]], "12.6.0 - 27 Jan 2022": [[102, "jan-2022"]], "12.5.1 - 18 Jan 2022": [[102, "id128"]], "12.5.0 - 17 Jan 2022": [[102, "id129"]], "12.4.1 - 12 Jan 2022": [[102, "id130"]], "12.3.0 - 10 Jan 2022": [[102, "id135"]], "12.2.0 - 17 Dec 2021": [[102, "dec-2021"]], "12.1.2 - 14 Dec 2021": [[102, "id138"]], "12.1.1 - 7 Dec 2021": [[102, "id139"]], "12.1.0 - 7 Dec 2021": [[102, "id140"]], "Releases on 01 Dec 2021": [[102, "releases-on-01-dec-2021"]], "12.0.0 - 29 Nov 2021": [[102, "nov-2021"]], "11.6.4 - 24 Nov 2021": [[102, "id141"]], "11.6.3 - 15 Nov 2021": [[102, "id142"]], "11.6.2 - 13 Nov 2021": [[102, "id143"]], "11.6.1 - 12 Nov 2021": [[102, "id144"]], "11.6.0 - 4 Nov 2021": [[102, "id145"]], "11.5.2": [[102, "id146"]], "11.5.1": [[102, "id147"]], "11.5.0": [[102, "id148"]], "11.4.0": [[102, "id149"]], "11.3.0": [[102, "id150"]], "11.2.1": [[102, "id151"]], "11.2.0": [[102, "id152"]], "11.1.3": [[102, "id153"]], "11.1.2": [[102, "id154"]], "11.1.1": [[102, "id155"]], "11.1.0": [[102, "id156"]], "11.0.0": [[102, "id157"]], "10.9.3": [[102, "id158"]], "10.9.2": [[102, "id159"]], "10.9.0": [[102, "id160"]], "10.8.0": [[102, "id161"]], "10.7.1": [[102, "id162"]], "10.6.0": [[102, "id163"]], "10.5.0": [[102, "id164"]], "10.4.0": [[102, "id165"]], "10.3.0": [[102, "id166"]], "10.2.0": [[102, "id167"]], "rpaframework-google: 0.2.3": [[102, "rpaframework-google-0-2-3"]], "10.1.0": [[102, "id168"]], "10.0.7": [[102, "id169"]], "10.0.6": [[102, "id170"]], "10.0.5": [[102, "id171"]], "10.0.4": [[102, "id172"]], "10.0.3": [[102, "id173"]], "10.0.2": [[102, "id174"]], "10.0.1": [[102, "id175"]], "10.0.0": [[102, "id176"]], "9.6.0": [[102, "id177"]], "9.5.0": [[102, "id178"]], "9.4.0": [[102, "id179"]], "9.3.4": [[102, "id180"]], "9.3.3": [[102, "id181"]], "9.3.2": [[102, "id182"]], "9.3.1": [[102, "id183"]], "9.3.0": [[102, "id184"]], "9.2.1": [[102, "id185"]], "9.2.0": [[102, "id186"]], "9.1.0": [[102, "id187"]], "9.0.0": [[102, "id188"]], "8.2.0": [[102, "id189"]], "8.1.0": [[102, "id190"]], "8.0.1": [[102, "id191"]], "8.0.0": [[102, "id192"]], "7.6.0": [[102, "id193"]], "7.5.0": [[102, "id194"]], "7.4.2": [[102, "id195"]], "7.4.1": [[102, "id196"]], "7.4.0": [[102, "id197"]], "7.3.0": [[102, "id198"]], "7.2.0": [[102, "id199"]], "7.1.1": [[102, "id200"]], "7.1.0": [[102, "id201"]], "7.0.5": [[102, "id202"]], "7.0.4": [[102, "id203"]], "7.0.3": [[102, "id204"]], "7.0.2": [[102, "id205"]], "7.0.1": [[102, "id206"]], "7.0.0": [[102, "id207"]], "6.7.3": [[102, "id208"]], "6.7.2": [[102, "id209"]], "6.7.1": [[102, "id210"]], "6.7.0": [[102, "id211"]], "6.6.0": [[102, "id212"]], "6.5.0": [[102, "id213"]], "6.4.0": [[102, "id214"]], "6.3.1": [[102, "id215"]], "6.3.0": [[102, "id216"]], "6.2.0": [[102, "id217"]], "6.1.0": [[102, "id218"]], "6.0.2": [[102, "id219"]], "6.0.1": [[102, "id220"]], "6.0.0": [[102, "id221"]], "5.3.3": [[102, "id222"]], "5.3.2": [[102, "id223"]], "5.3.1": [[102, "id224"]], "5.3.0": [[102, "id225"]], "5.2.0": [[102, "id226"]], "5.1.0": [[102, "id227"]], "5.0.0": [[102, "id228"]], "4.2.0": [[102, "id229"]], "4.1.0": [[102, "id230"]], "4.0.0": [[102, "id231"]], "3.0.0": [[102, "id232"]], "2.7.0": [[102, "id233"]], "2.6.0": [[102, "id234"]], "2.5.1": [[102, "id235"]], "2.5.0": [[102, "id236"]], "2.4.0": [[102, "id237"]], "2.3.0": [[102, "id238"]], "2.2.0": [[102, "id239"]], "2.1.0": [[102, "id240"]], "2.0.1": [[102, "id241"]], "2.0.0": [[102, "id242"]], "1.4.0": [[102, "id243"]], "1.3.0": [[102, "id244"]], "1.2.1": [[102, "id245"]], "1.2.0": [[102, "id246"]], "1.1.0": [[102, "id247"]], "1.0.4": [[102, "id248"]], "1.0.3": [[102, "id249"]], "1.0.2": [[102, "id250"]], "1.0.1": [[102, "id251"]], "1.0.0": [[102, "id252"]], "0.11.0": [[102, "id253"]], "0.10.1": [[102, "id254"]], "0.10.0": [[102, "id255"]], "0.9.3": [[102, "id256"]], "0.9.2": [[102, "id257"]], "0.9.1": [[102, "id258"]], "0.9.0": [[102, "id259"]], "0.8.7": [[102, "id260"]], "0.8.6": [[102, "id261"]], "0.8.5": [[102, "id262"]], "0.8.4": [[102, "id263"]], "0.8.3": [[102, "id264"]], "0.8.2": [[102, "id265"]], "0.8.1": [[102, "id266"]], "0.8.0": [[102, "id267"]], "0.7.5": [[102, "id268"]], "0.7.4": [[102, "id269"]], "0.7.3": [[102, "id270"]], "0.7.2": [[102, "id271"]], "0.7.1": [[102, "id272"]]}, "indexentries": {"archive (class in rpa.archive)": [[5, "RPA.Archive.Archive"]], "robot_library_doc_format (rpa.archive.archive attribute)": [[5, "RPA.Archive.Archive.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.archive.archive attribute)": [[5, "RPA.Archive.Archive.ROBOT_LIBRARY_SCOPE"]], "add_to_archive() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.add_to_archive"]], "archive_folder_with_tar() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.archive_folder_with_tar"]], "archive_folder_with_zip() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.archive_folder_with_zip"]], "extract_archive() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.extract_archive"]], "extract_file_from_archive() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.extract_file_from_archive"]], "get_archive_info() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.get_archive_info"]], "list_archive() (rpa.archive.archive method)": [[5, "RPA.Archive.Archive.list_archive"]], "assistant (class in rpa.assistant)": [[7, "RPA.Assistant.Assistant"]], "robot_auto_keywords (rpa.assistant.assistant attribute)": [[7, "RPA.Assistant.Assistant.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.assistant.assistant attribute)": [[7, "RPA.Assistant.Assistant.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.assistant.assistant attribute)": [[7, "RPA.Assistant.Assistant.ROBOT_LIBRARY_SCOPE"]], "add_button() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_button"]], "add_checkbox() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_checkbox"]], "add_date_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_date_input"]], "add_drop_down() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_drop_down"]], "add_file() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_file"]], "add_file_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_file_input"]], "add_files() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_files"]], "add_flet_icon() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_flet_icon"]], "add_heading() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_heading"]], "add_hidden_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_hidden_input"]], "add_icon() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_icon"]], "add_image() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_image"]], "add_link() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_link"]], "add_loading_bar() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_loading_bar"]], "add_loading_spinner() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_loading_spinner"]], "add_next_ui_button() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_next_ui_button"]], "add_password_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_password_input"]], "add_radio_buttons() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_radio_buttons"]], "add_slider() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_slider"]], "add_submit_buttons() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_submit_buttons"]], "add_text() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_text"]], "add_text_input() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.add_text_input"]], "ask_user() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.ask_user"]], "clear_dialog() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.clear_dialog"]], "close_column() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_column"]], "close_container() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_container"]], "close_navbar() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_navbar"]], "close_row() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_row"]], "close_stack() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.close_stack"]], "open_column() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_column"]], "open_container() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_container"]], "open_navbar() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_navbar"]], "open_row() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_row"]], "open_stack() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.open_stack"]], "refresh_dialog() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.refresh_dialog"]], "run_dialog() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.run_dialog"]], "set_title() (rpa.assistant.assistant method)": [[7, "RPA.Assistant.Assistant.set_title"]], "available_options (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.AVAILABLE_OPTIONS"]], "available_services (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.AVAILABLE_SERVICES"]], "browser_names (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.BROWSER_NAMES"]], "chromium_browsers (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.CHROMIUM_BROWSERS"]], "robot_library_doc_format (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.ROBOT_LIBRARY_SCOPE"]], "robot_library_version (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.ROBOT_LIBRARY_VERSION"]], "supported_browsers (rpa.browser.selenium.selenium attribute)": [[11, "RPA.Browser.Selenium.Selenium.SUPPORTED_BROWSERS"]], "selenium (class in rpa.browser.selenium)": [[11, "RPA.Browser.Selenium.Selenium"]], "add_library_components() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.add_library_components"]], "attach_chrome_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.attach_chrome_browser"]], "clear_all_highlights() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.clear_all_highlights"]], "click_button_when_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.click_button_when_visible"]], "click_element_if_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.click_element_if_visible"]], "click_element_when_clickable() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.click_element_when_clickable"]], "click_element_when_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.click_element_when_visible"]], "does_alert_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_alert_contain"]], "does_alert_not_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_alert_not_contain"]], "does_element_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_element_contain"]], "does_frame_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_frame_contain"]], "does_location_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_location_contain"]], "does_page_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain"]], "does_page_contain_button() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_button"]], "does_page_contain_checkbox() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_checkbox"]], "does_page_contain_element() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_element"]], "does_page_contain_image() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_image"]], "does_page_contain_link() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_link"]], "does_page_contain_list() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_list"]], "does_page_contain_radio_button() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_radio_button"]], "does_page_contain_textfield() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_page_contain_textfield"]], "does_table_cell_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_cell_contain"]], "does_table_column_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_column_contain"]], "does_table_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_contain"]], "does_table_footer_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_footer_contain"]], "does_table_header_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_header_contain"]], "does_table_row_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_table_row_contain"]], "does_textarea_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_textarea_contain"]], "does_textfield_contain() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.does_textfield_contain"]], "driver (rpa.browser.selenium.selenium property)": [[11, "RPA.Browser.Selenium.Selenium.driver"]], "execute_cdp() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.execute_cdp"]], "failure_occurred() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.failure_occurred"]], "find_element() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.find_element"]], "find_elements() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.find_elements"]], "get_browser_capabilities() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_browser_capabilities"]], "get_element_status() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_element_status"]], "get_keyword_arguments() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_arguments"]], "get_keyword_documentation() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_documentation"]], "get_keyword_names() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_names"]], "get_keyword_source() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_source"]], "get_keyword_tags() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_tags"]], "get_keyword_types() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_keyword_types"]], "get_testability_status() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_testability_status"]], "get_webelement() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.get_webelement"]], "highlight_elements() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.highlight_elements"]], "input_text_when_element_is_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.input_text_when_element_is_visible"]], "is_alert_present() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_alert_present"]], "is_checkbox_selected() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_checkbox_selected"]], "is_chromium (rpa.browser.selenium.selenium property)": [[11, "RPA.Browser.Selenium.Selenium.is_chromium"]], "is_element_attribute_equal_to() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_attribute_equal_to"]], "is_element_disabled() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_disabled"]], "is_element_enabled() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_enabled"]], "is_element_focused() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_focused"]], "is_element_text() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_text"]], "is_element_visible() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_element_visible"]], "is_list_selected() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_list_selected"]], "is_list_selection() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_list_selection"]], "is_location() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_location"]], "is_radio_button_selected() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_radio_button_selected"]], "is_radio_button_set_to() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_radio_button_set_to"]], "is_textarea_value() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_textarea_value"]], "is_textfield_value() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_textfield_value"]], "is_title() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.is_title"]], "location (rpa.browser.selenium.selenium property)": [[11, "RPA.Browser.Selenium.Selenium.location"]], "normalize_options() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.normalize_options"]], "open_available_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.open_available_browser"]], "open_chrome_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.open_chrome_browser"]], "open_headless_chrome_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.open_headless_chrome_browser"]], "open_user_browser() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.open_user_browser"]], "print_to_pdf() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.print_to_pdf"]], "register_driver() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.register_driver"]], "run_keyword() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.run_keyword"]], "screenshot() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.screenshot"]], "set_download_directory() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.set_download_directory"]], "set_element_attribute() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.set_element_attribute"]], "wait_and_click_button() (rpa.browser.selenium.selenium method)": [[11, "RPA.Browser.Selenium.Selenium.wait_and_click_button"]], "calendar (class in rpa.calendar)": [[13, "RPA.Calendar.Calendar"]], "robot_auto_keywords (rpa.calendar.calendar attribute)": [[13, "RPA.Calendar.Calendar.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.calendar.calendar attribute)": [[13, "RPA.Calendar.Calendar.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.calendar.calendar attribute)": [[13, "RPA.Calendar.Calendar.ROBOT_LIBRARY_SCOPE"]], "add_custom_holidays() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.add_custom_holidays"]], "compare_times() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.compare_times"]], "create_time() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.create_time"]], "first_business_day_of_the_month() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.first_business_day_of_the_month"]], "get_iso_calendar() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.get_iso_calendar"]], "is_the_date_business_day() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.is_the_date_business_day"]], "is_the_date_holiday() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.is_the_date_holiday"]], "last_business_day_of_the_month() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.last_business_day_of_the_month"]], "reset_custom_holidays() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.reset_custom_holidays"]], "return_holidays() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.return_holidays"]], "return_next_business_day() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.return_next_business_day"]], "return_previous_business_day() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.return_previous_business_day"]], "set_business_days() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.set_business_days"]], "set_locale() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.set_locale"]], "sort_list_of_dates() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.sort_list_of_dates"]], "time_difference() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference"]], "time_difference_between_timezones() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_between_timezones"]], "time_difference_in_days() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_in_days"]], "time_difference_in_hours() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_in_hours"]], "time_difference_in_minutes() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_in_minutes"]], "time_difference_in_months() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_difference_in_months"]], "time_now() (rpa.calendar.calendar method)": [[13, "RPA.Calendar.Calendar.time_now"]], "aws (class in rpa.cloud.aws)": [[15, "RPA.Cloud.AWS.AWS"]], "robot_library_doc_format (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.ROBOT_LIBRARY_SCOPE"]], "analyze_document() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.analyze_document"]], "assume_role() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.assume_role"]], "clients (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.clients"]], "convert_textract_response_to_model() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.convert_textract_response_to_model"]], "create_bucket() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.create_bucket"]], "create_queue() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.create_queue"]], "create_redshift_statement_parameters() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.create_redshift_statement_parameters"]], "delete_bucket() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.delete_bucket"]], "delete_files() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.delete_files"]], "delete_message() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.delete_message"]], "delete_queue() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.delete_queue"]], "describe_redshift_table() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.describe_redshift_table"]], "detect_document_text() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.detect_document_text"]], "detect_entities() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.detect_entities"]], "detect_sentiment() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.detect_sentiment"]], "download_files() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.download_files"]], "execute_redshift_statement() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.execute_redshift_statement"]], "execute_redshift_statement_asyncronously() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.execute_redshift_statement_asyncronously"]], "generate_presigned_url() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.generate_presigned_url"]], "get_cells() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_cells"]], "get_document_analysis() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_document_analysis"]], "get_document_text_detection() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_document_text_detection"]], "get_pages_and_text() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_pages_and_text"]], "get_redshift_statement_results() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_redshift_statement_results"]], "get_tables() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_tables"]], "get_words() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.get_words"]], "init_comprehend_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_comprehend_client"]], "init_redshift_data_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_redshift_data_client"]], "init_s3_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_s3_client"]], "init_sqs_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_sqs_client"]], "init_sts_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_sts_client"]], "init_textract_client() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.init_textract_client"]], "list_buckets() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_buckets"]], "list_files() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_files"]], "list_redshift_databases() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_redshift_databases"]], "list_redshift_schemas() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_redshift_schemas"]], "list_redshift_tables() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.list_redshift_tables"]], "logger (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.logger"]], "receive_message() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.receive_message"]], "region (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.region"]], "robocorp_vault_name (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.robocorp_vault_name"]], "send_message() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.send_message"]], "services (rpa.cloud.aws.aws attribute)": [[15, "RPA.Cloud.AWS.AWS.services"]], "set_robocorp_vault() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.set_robocorp_vault"]], "start_document_analysis() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.start_document_analysis"]], "start_document_text_detection() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.start_document_text_detection"]], "upload_file() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.upload_file"]], "upload_files() (rpa.cloud.aws.aws method)": [[15, "RPA.Cloud.AWS.AWS.upload_files"]], "azure (class in rpa.cloud.azure)": [[17, "RPA.Cloud.Azure.Azure"]], "robot_library_doc_format (rpa.cloud.azure.azure attribute)": [[17, "RPA.Cloud.Azure.Azure.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.cloud.azure.azure attribute)": [[17, "RPA.Cloud.Azure.Azure.ROBOT_LIBRARY_SCOPE"]], "google (class in rpa.cloud.google)": [[19, "RPA.Cloud.Google.Google"]], "robot_library_doc_format (rpa.cloud.google.google attribute)": [[19, "RPA.Cloud.Google.Google.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.cloud.google.google attribute)": [[19, "RPA.Cloud.Google.Google.ROBOT_LIBRARY_SCOPE"]], "add_attachment_to_message() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.add_attachment_to_message"]], "add_drive_share() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.add_drive_share"]], "analyze_sentiment() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.analyze_sentiment"]], "annotate_image() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.annotate_image"]], "annotate_video() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.annotate_video"]], "classify_text() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.classify_text"]], "clear_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.clear_sheet_values"]], "copy_sheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.copy_sheet"]], "copy_spreadsheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.copy_spreadsheet"]], "create_drive_directory() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_drive_directory"]], "create_message() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_message"]], "create_sheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_sheet"]], "create_spreadsheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_spreadsheet"]], "create_storage_bucket() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.create_storage_bucket"]], "delete_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.delete_drive_file"]], "delete_sheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.delete_sheet"]], "delete_storage_bucket() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.delete_storage_bucket"]], "delete_storage_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.delete_storage_files"]], "detect_document() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.detect_document"]], "detect_labels() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.detect_labels"]], "detect_tables() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.detect_tables"]], "detect_text() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.detect_text"]], "download_drive_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.download_drive_files"]], "download_storage_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.download_storage_files"]], "export_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.export_drive_file"]], "face_detection() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.face_detection"]], "generic_spreadsheet_batch_update() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.generic_spreadsheet_batch_update"]], "get_all_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_all_sheet_values"]], "get_document_entities() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_document_entities"]], "get_document_languages() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_document_languages"]], "get_drive_file_by_id() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_drive_file_by_id"]], "get_drive_folder_id() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_drive_folder_id"]], "get_sheet_by_name() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_sheet_by_name"]], "get_sheet_formulas() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_sheet_formulas"]], "get_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_sheet_values"]], "get_spreadsheet_basic_information() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_spreadsheet_basic_information"]], "get_spreadsheet_details() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_spreadsheet_details"]], "get_storage_bucket() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.get_storage_bucket"]], "handle_mimetypes() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.handle_mimetypes"]], "init_apps_script() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_apps_script"]], "init_document_ai() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_document_ai"]], "init_drive() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_drive"]], "init_gmail() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_gmail"]], "init_natural_language() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_natural_language"]], "init_sheets() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_sheets"]], "init_speech_to_text() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_speech_to_text"]], "init_storage() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_storage"]], "init_text_to_speech() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_text_to_speech"]], "init_translation() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_translation"]], "init_video_intelligence() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_video_intelligence"]], "init_vision() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.init_vision"]], "insert_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.insert_sheet_values"]], "list_messages() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_messages"]], "list_processors() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_processors"]], "list_shared_drive_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_shared_drive_files"]], "list_storage_buckets() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_storage_buckets"]], "list_storage_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_storage_files"]], "list_supported_voices() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.list_supported_voices"]], "load_document_response() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.load_document_response"]], "move_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.move_drive_file"]], "parse_parts() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.parse_parts"]], "process_document() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.process_document"]], "recognize_text_from_audio() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.recognize_text_from_audio"]], "remove_all_drive_shares() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.remove_all_drive_shares"]], "remove_drive_share_by_criteria() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.remove_drive_share_by_criteria"]], "remove_drive_share_by_permission_id() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.remove_drive_share_by_permission_id"]], "rename_sheet() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.rename_sheet"]], "run_script() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.run_script"]], "save_document_response() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.save_document_response"]], "search_drive_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.search_drive_files"]], "send_message() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.send_message"]], "set_audio_type() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_audio_type"]], "set_headers_to_message_dict() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_headers_to_message_dict"]], "set_image_type() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_image_type"]], "set_list_parameters() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_list_parameters"]], "set_robocorp_vault() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.set_robocorp_vault"]], "synthesize_speech() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.synthesize_speech"]], "to_a1_notation() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.to_A1_notation"]], "to_column_letter() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.to_column_letter"]], "translate() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.translate"]], "update_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.update_drive_file"]], "update_sheet_values() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.update_sheet_values"]], "upload_drive_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.upload_drive_file"]], "upload_storage_file() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.upload_storage_file"]], "upload_storage_files() (rpa.cloud.google.google method)": [[19, "RPA.Cloud.Google.Google.upload_storage_files"]], "crypto (class in rpa.crypto)": [[21, "RPA.Crypto.Crypto"]], "robot_library_doc_format (rpa.crypto.crypto attribute)": [[21, "RPA.Crypto.Crypto.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.crypto.crypto attribute)": [[21, "RPA.Crypto.Crypto.ROBOT_LIBRARY_SCOPE"]], "decrypt_file() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.decrypt_file"]], "decrypt_string() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.decrypt_string"]], "encrypt_file() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.encrypt_file"]], "encrypt_string() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.encrypt_string"]], "generate_key() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.generate_key"]], "hash_file() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.hash_file"]], "hash_string() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.hash_string"]], "use_encryption_key() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.use_encryption_key"]], "use_encryption_key_from_vault() (rpa.crypto.crypto method)": [[21, "RPA.Crypto.Crypto.use_encryption_key_from_vault"]], "database (class in rpa.database)": [[23, "RPA.Database.Database"]], "robot_library_doc_format (rpa.database.database attribute)": [[23, "RPA.Database.Database.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.database.database attribute)": [[23, "RPA.Database.Database.ROBOT_LIBRARY_SCOPE"]], "call_stored_procedure() (rpa.database.database method)": [[23, "RPA.Database.Database.call_stored_procedure"]], "connect_to_database() (rpa.database.database method)": [[23, "RPA.Database.Database.connect_to_database"]], "description() (rpa.database.database method)": [[23, "RPA.Database.Database.description"]], "disconnect_from_database() (rpa.database.database method)": [[23, "RPA.Database.Database.disconnect_from_database"]], "execute_sql_script() (rpa.database.database method)": [[23, "RPA.Database.Database.execute_sql_script"]], "get_number_of_rows() (rpa.database.database method)": [[23, "RPA.Database.Database.get_number_of_rows"]], "get_rows() (rpa.database.database method)": [[23, "RPA.Database.Database.get_rows"]], "query() (rpa.database.database method)": [[23, "RPA.Database.Database.query"]], "set_auto_commit() (rpa.database.database method)": [[23, "RPA.Database.Database.set_auto_commit"]], "desktop (class in rpa.desktop)": [[25, "RPA.Desktop.Desktop"]], "robot_library_doc_format (rpa.desktop.desktop attribute)": [[25, "RPA.Desktop.Desktop.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.desktop.desktop attribute)": [[25, "RPA.Desktop.Desktop.ROBOT_LIBRARY_SCOPE"]], "add_library_components() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.add_library_components"]], "get_keyword_arguments() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_arguments"]], "get_keyword_documentation() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_documentation"]], "get_keyword_names() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_names"]], "get_keyword_source() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_source"]], "get_keyword_tags() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_tags"]], "get_keyword_types() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.get_keyword_types"]], "run_keyword() (rpa.desktop.desktop method)": [[25, "RPA.Desktop.Desktop.run_keyword"]], "clipboard (class in rpa.desktop.clipboard)": [[27, "RPA.Desktop.Clipboard.Clipboard"]], "robot_library_doc_format (rpa.desktop.clipboard.clipboard attribute)": [[27, "RPA.Desktop.Clipboard.Clipboard.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.desktop.clipboard.clipboard attribute)": [[27, "RPA.Desktop.Clipboard.Clipboard.ROBOT_LIBRARY_SCOPE"]], "clear_clipboard() (rpa.desktop.clipboard.clipboard method)": [[27, "RPA.Desktop.Clipboard.Clipboard.clear_clipboard"]], "copy_to_clipboard() (rpa.desktop.clipboard.clipboard method)": [[27, "RPA.Desktop.Clipboard.Clipboard.copy_to_clipboard"]], "paste_from_clipboard() (rpa.desktop.clipboard.clipboard method)": [[27, "RPA.Desktop.Clipboard.Clipboard.paste_from_clipboard"]], "operatingsystem (class in rpa.desktop.operatingsystem)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem"]], "robot_library_doc_format (rpa.desktop.operatingsystem.operatingsystem attribute)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.desktop.operatingsystem.operatingsystem attribute)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.ROBOT_LIBRARY_SCOPE"]], "boot_time_in_seconds_from_epoch() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.boot_time_in_seconds_from_epoch"]], "get_boot_time() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.get_boot_time"]], "get_machine_name() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.get_machine_name"]], "get_memory_stats() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.get_memory_stats"]], "get_username() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.get_username"]], "kill_process() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.kill_process"]], "kill_process_by_pid() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.kill_process_by_pid"]], "process_exists() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.process_exists"]], "process_id_exists() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.process_id_exists"]], "put_system_to_sleep() (rpa.desktop.operatingsystem.operatingsystem method)": [[29, "RPA.Desktop.OperatingSystem.OperatingSystem.put_system_to_sleep"]], "robot_library_doc_format (rpa.desktop.windows.windows attribute)": [[31, "RPA.Desktop.Windows.Windows.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.desktop.windows.windows attribute)": [[31, "RPA.Desktop.Windows.Windows.ROBOT_LIBRARY_SCOPE"]], "windows (class in rpa.desktop.windows)": [[31, "RPA.Desktop.Windows.Windows"]], "boot_time_in_seconds_from_epoch() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.boot_time_in_seconds_from_epoch"]], "calculate_rectangle_center() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.calculate_rectangle_center"]], "click_type() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.click_type"]], "close_all_applications() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.close_all_applications"]], "connect_by_handle() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.connect_by_handle"]], "connect_by_pid() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.connect_by_pid"]], "drag_and_drop() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.drag_and_drop"]], "find_element() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.find_element"]], "get_app() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_app"]], "get_boot_time() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_boot_time"]], "get_dialog_rectangle() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_dialog_rectangle"]], "get_element() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_element"]], "get_element_center() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_element_center"]], "get_element_rectangle() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_element_rectangle"]], "get_element_rich_text() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_element_rich_text"]], "get_machine_name() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_machine_name"]], "get_memory_stats() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_memory_stats"]], "get_open_applications() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_open_applications"]], "get_spaced_string() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_spaced_string"]], "get_text() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_text"]], "get_username() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_username"]], "get_window_elements() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_window_elements"]], "get_window_list() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.get_window_list"]], "is_element_enabled() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.is_element_enabled"]], "is_element_matching() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.is_element_matching"]], "is_element_visible() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.is_element_visible"]], "kill_process() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.kill_process"]], "kill_process_by_pid() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.kill_process_by_pid"]], "lock_screen() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.lock_screen"]], "log_in() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.log_in"]], "menu_select() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.menu_select"]], "minimize_dialog() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.minimize_dialog"]], "mouse_click() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.mouse_click"]], "mouse_click_coords() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.mouse_click_coords"]], "mouse_click_image() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.mouse_click_image"]], "open_application() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_application"]], "open_dialog() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_dialog"]], "open_executable() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_executable"]], "open_file() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_file"]], "open_from_search() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_from_search"]], "open_using_run_dialog() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.open_using_run_dialog"]], "process_exists() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.process_exists"]], "process_id_exists() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.process_id_exists"]], "put_system_to_sleep() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.put_system_to_sleep"]], "quit_application() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.quit_application"]], "refresh_window() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.refresh_window"]], "restore_dialog() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.restore_dialog"]], "screenshot() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.screenshot"]], "send_keys() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.send_keys"]], "send_keys_to_input() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.send_keys_to_input"]], "set_automation_speed() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.set_automation_speed"]], "set_windows_backend() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.set_windows_backend"]], "switch_to_application() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.switch_to_application"]], "type_into() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.type_into"]], "type_keys() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.type_keys"]], "wait_for_element() (rpa.desktop.windows.windows method)": [[31, "RPA.Desktop.Windows.Windows.wait_for_element"]], "documentai (class in rpa.documentai.documentai)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI"]], "robot_auto_keywords (rpa.documentai.documentai.documentai attribute)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.documentai.documentai.documentai attribute)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.documentai.documentai.documentai attribute)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.ROBOT_LIBRARY_SCOPE"]], "engine (rpa.documentai.documentai.documentai property)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.engine"]], "get_result() (rpa.documentai.documentai.documentai method)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.get_result"]], "init_engine() (rpa.documentai.documentai.documentai method)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.init_engine"]], "predict() (rpa.documentai.documentai.documentai method)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.predict"]], "result (rpa.documentai.documentai.documentai property)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.result"]], "switch_engine() (rpa.documentai.documentai.documentai method)": [[33, "RPA.DocumentAI.DocumentAI.DocumentAI.switch_engine"]], "base_url (rpa.documentai.base64ai.base64ai attribute)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.BASE_URL"]], "base64ai (class in rpa.documentai.base64ai)": [[35, "RPA.DocumentAI.Base64AI.Base64AI"]], "robot_library_doc_format (rpa.documentai.base64ai.base64ai attribute)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.documentai.base64ai.base64ai attribute)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.ROBOT_LIBRARY_SCOPE"]], "filter_matching_signatures() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.filter_matching_signatures"]], "get_fields_from_prediction_result() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.get_fields_from_prediction_result"]], "get_matching_signatures() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.get_matching_signatures"]], "get_signature_image() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.get_signature_image"]], "get_user_data() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.get_user_data"]], "scan_document_file() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.scan_document_file"]], "scan_document_url() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.scan_document_url"]], "set_authorization() (rpa.documentai.base64ai.base64ai method)": [[35, "RPA.DocumentAI.Base64AI.Base64AI.set_authorization"]], "nanonets (class in rpa.documentai.nanonets)": [[37, "RPA.DocumentAI.Nanonets.Nanonets"]], "robot_library_doc_format (rpa.documentai.nanonets.nanonets attribute)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.documentai.nanonets.nanonets attribute)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.ROBOT_LIBRARY_SCOPE"]], "get_all_models() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.get_all_models"]], "get_fields_from_prediction_result() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.get_fields_from_prediction_result"]], "get_tables_from_prediction_result() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.get_tables_from_prediction_result"]], "ocr_fulltext() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.ocr_fulltext"]], "predict_file() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.predict_file"]], "set_authorization() (rpa.documentai.nanonets.nanonets method)": [[37, "RPA.DocumentAI.Nanonets.Nanonets.set_authorization"]], "exchange (class in rpa.email.exchange)": [[39, "RPA.Email.Exchange.Exchange"]], "robot_library_doc_format (rpa.email.exchange.exchange attribute)": [[39, "RPA.Email.Exchange.Exchange.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.email.exchange.exchange attribute)": [[39, "RPA.Email.Exchange.Exchange.ROBOT_LIBRARY_SCOPE"]], "to_protect (rpa.email.exchange.exchange attribute)": [[39, "RPA.Email.Exchange.Exchange.TO_PROTECT"]], "authorize() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.authorize"]], "create_folder() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.create_folder"]], "delete_folder() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.delete_folder"]], "delete_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.delete_message"]], "empty_folder() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.empty_folder"]], "forward_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.forward_message"]], "generate_oauth_url() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.generate_oauth_url"]], "get_oauth_token() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.get_oauth_token"]], "list_messages() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.list_messages"]], "list_unread_messages() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.list_unread_messages"]], "move_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.move_message"]], "move_messages() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.move_messages"]], "refresh_oauth_token() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.refresh_oauth_token"]], "rename_folder() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.rename_folder"]], "save_attachments() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.save_attachments"]], "save_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.save_message"]], "send_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.send_message"]], "send_reply_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.send_reply_message"]], "wait_for_message() (rpa.email.exchange.exchange method)": [[39, "RPA.Email.Exchange.Exchange.wait_for_message"]], "imapsmtp (class in rpa.email.imapsmtp)": [[41, "RPA.Email.ImapSmtp.ImapSmtp"]], "robot_library_doc_format (rpa.email.imapsmtp.imapsmtp attribute)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.email.imapsmtp.imapsmtp attribute)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.ROBOT_LIBRARY_SCOPE"]], "to_protect (rpa.email.imapsmtp.imapsmtp attribute)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.TO_PROTECT"]], "add_gmail_labels() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.add_gmail_labels"]], "authorize() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.authorize"]], "authorize_imap() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.authorize_imap"]], "authorize_smtp() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.authorize_smtp"]], "convert_eml_file_into_message() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.convert_eml_file_into_message"]], "create_folder() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.create_folder"]], "delete_folder() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.delete_folder"]], "delete_message() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.delete_message"]], "delete_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.delete_messages"]], "do_message_actions() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.do_message_actions"]], "email_to_document() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.email_to_document"]], "flag_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.flag_messages"]], "generate_oauth_string() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.generate_oauth_string"]], "generate_oauth_url() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.generate_oauth_url"]], "get_decoded_email_body() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.get_decoded_email_body"]], "get_folder_list() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.get_folder_list"]], "get_oauth_token() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.get_oauth_token"]], "list_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.list_messages"]], "mark_as_read() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.mark_as_read"]], "mark_as_unread() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.mark_as_unread"]], "move_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.move_messages"]], "move_messages_by_ids() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.move_messages_by_ids"]], "refresh_oauth_token() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.refresh_oauth_token"]], "remove_gmail_labels() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.remove_gmail_labels"]], "rename_folder() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.rename_folder"]], "save_attachment() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.save_attachment"]], "save_attachments() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.save_attachments"]], "save_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.save_messages"]], "select_folder() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.select_folder"]], "send_message() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.send_message"]], "send_smtp_hello() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.send_smtp_hello"]], "set_credentials() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.set_credentials"]], "unflag_messages() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.unflag_messages"]], "wait_for_message() (rpa.email.imapsmtp.imapsmtp method)": [[41, "RPA.Email.ImapSmtp.ImapSmtp.wait_for_message"]], "app_dispatch (rpa.excel.application.application attribute)": [[43, "RPA.Excel.Application.Application.APP_DISPATCH"]], "application (class in rpa.excel.application)": [[43, "RPA.Excel.Application.Application"]], "robot_library_doc_format (rpa.excel.application.application attribute)": [[43, "RPA.Excel.Application.Application.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.excel.application.application attribute)": [[43, "RPA.Excel.Application.Application.ROBOT_LIBRARY_SCOPE"]], "add_new_sheet() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.add_new_sheet"]], "add_new_workbook() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.add_new_workbook"]], "app (rpa.excel.application.application property)": [[43, "RPA.Excel.Application.Application.app"]], "close_document() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.close_document"]], "create_pivot_field() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.create_pivot_field"]], "create_pivot_table() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.create_pivot_table"]], "create_table() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.create_table"]], "export_as_pdf() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.export_as_pdf"]], "find() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.find"]], "find_first_available_cell() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.find_first_available_cell"]], "find_first_available_row() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.find_first_available_row"]], "get_pivot_tables() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.get_pivot_tables"]], "get_range() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.get_range"]], "list_tables() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.list_tables"]], "merge_range() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.merge_range"]], "open_application() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.open_application"]], "open_workbook() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.open_workbook"]], "quit_application() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.quit_application"]], "read_from_cells() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.read_from_cells"]], "remove_hidden_columns_and_rows() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.remove_hidden_columns_and_rows"]], "run_macro() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.run_macro"]], "save_excel() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.save_excel"]], "save_excel_as() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.save_excel_as"]], "set_active_worksheet() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.set_active_worksheet"]], "set_object_property() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.set_object_property"]], "unmerge_range() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.unmerge_range"]], "write_data_to_range() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.write_data_to_range"]], "write_to_cells() (rpa.excel.application.application method)": [[43, "RPA.Excel.Application.Application.write_to_cells"]], "files (class in rpa.excel.files)": [[45, "RPA.Excel.Files.Files"]], "robot_library_doc_format (rpa.excel.files.files attribute)": [[45, "RPA.Excel.Files.Files.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.excel.files.files attribute)": [[45, "RPA.Excel.Files.Files.ROBOT_LIBRARY_SCOPE"]], "append_rows_to_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.append_rows_to_worksheet"]], "auto_size_columns() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.auto_size_columns"]], "clear_cell_range() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.clear_cell_range"]], "close_workbook() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.close_workbook"]], "copy_cell_values() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.copy_cell_values"]], "create_workbook() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.create_workbook"]], "create_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.create_worksheet"]], "delete_columns() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.delete_columns"]], "delete_rows() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.delete_rows"]], "find_empty_row() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.find_empty_row"]], "get_active_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.get_active_worksheet"]], "get_cell_value() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.get_cell_value"]], "get_worksheet_value() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.get_worksheet_value"]], "hide_columns() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.hide_columns"]], "insert_columns_after() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_columns_after"]], "insert_columns_before() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_columns_before"]], "insert_image_to_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_image_to_worksheet"]], "insert_rows_after() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_rows_after"]], "insert_rows_before() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.insert_rows_before"]], "list_worksheets() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.list_worksheets"]], "move_range() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.move_range"]], "open_workbook() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.open_workbook"]], "read_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.read_worksheet"]], "read_worksheet_as_table() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.read_worksheet_as_table"]], "remove_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.remove_worksheet"]], "rename_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.rename_worksheet"]], "save_workbook() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.save_workbook"]], "set_active_worksheet() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_active_worksheet"]], "set_cell_format() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_cell_format"]], "set_cell_formula() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_cell_formula"]], "set_cell_value() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_cell_value"]], "set_cell_values() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_cell_values"]], "set_styles() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_styles"]], "set_worksheet_value() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.set_worksheet_value"]], "unhide_columns() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.unhide_columns"]], "worksheet_exists() (rpa.excel.files.files method)": [[45, "RPA.Excel.Files.Files.worksheet_exists"]], "filesystem (class in rpa.filesystem)": [[47, "RPA.FileSystem.FileSystem"]], "path_type (rpa.filesystem.filesystem attribute)": [[47, "RPA.FileSystem.FileSystem.PATH_TYPE"]], "robot_library_doc_format (rpa.filesystem.filesystem attribute)": [[47, "RPA.FileSystem.FileSystem.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.filesystem.filesystem attribute)": [[47, "RPA.FileSystem.FileSystem.ROBOT_LIBRARY_SCOPE"]], "absolute_path() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.absolute_path"]], "append_to_binary_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.append_to_binary_file"]], "append_to_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.append_to_file"]], "change_file_extension() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.change_file_extension"]], "copy_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.copy_directory"]], "copy_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.copy_file"]], "copy_files() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.copy_files"]], "create_binary_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.create_binary_file"]], "create_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.create_directory"]], "create_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.create_file"]], "does_directory_exist() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.does_directory_exist"]], "does_directory_not_exist() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.does_directory_not_exist"]], "does_file_exist() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.does_file_exist"]], "does_file_not_exist() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.does_file_not_exist"]], "empty_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.empty_directory"]], "find_files() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.find_files"]], "get_file_creation_date() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_creation_date"]], "get_file_extension() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_extension"]], "get_file_modified_date() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_modified_date"]], "get_file_name() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_name"]], "get_file_owner() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_owner"]], "get_file_size() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_size"]], "get_file_stem() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.get_file_stem"]], "is_directory_empty() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.is_directory_empty"]], "is_directory_not_empty() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.is_directory_not_empty"]], "is_file_empty() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.is_file_empty"]], "is_file_not_empty() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.is_file_not_empty"]], "join_path() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.join_path"]], "list_directories_in_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.list_directories_in_directory"]], "list_files_in_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.list_files_in_directory"]], "log_directory_tree() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.log_directory_tree"]], "move_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.move_directory"]], "move_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.move_file"]], "move_files() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.move_files"]], "normalize_path() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.normalize_path"]], "read_binary_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.read_binary_file"]], "read_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.read_file"]], "remove_directory() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.remove_directory"]], "remove_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.remove_file"]], "remove_files() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.remove_files"]], "run_keyword_if_file_exists() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.run_keyword_if_file_exists"]], "touch_file() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.touch_file"]], "wait_until_created() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.wait_until_created"]], "wait_until_modified() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.wait_until_modified"]], "wait_until_removed() (rpa.filesystem.filesystem method)": [[47, "RPA.FileSystem.FileSystem.wait_until_removed"]], "ftp (class in rpa.ftp)": [[49, "RPA.FTP.FTP"]], "robot_library_doc_format (rpa.ftp.ftp attribute)": [[49, "RPA.FTP.FTP.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.ftp.ftp attribute)": [[49, "RPA.FTP.FTP.ROBOT_LIBRARY_SCOPE"]], "abort() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.abort"]], "close() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.close"]], "connect() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.connect"]], "cwd() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.cwd"]], "delete() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.delete"]], "download() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.download"]], "file_size() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.file_size"]], "get_welcome_message() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.get_welcome_message"]], "list_files() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.list_files"]], "mkd() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.mkd"]], "pwd() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.pwd"]], "quit() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.quit"]], "rename() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.rename"]], "rmd() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.rmd"]], "send_command() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.send_command"]], "set_ascii_mode() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.set_ascii_mode"]], "set_binary_mode() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.set_binary_mode"]], "set_debug_level() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.set_debug_level"]], "upload() (rpa.ftp.ftp method)": [[49, "RPA.FTP.FTP.upload"]], "default_retry_method_list (rpa.http.http attribute)": [[51, "RPA.HTTP.HTTP.DEFAULT_RETRY_METHOD_LIST"]], "http (class in rpa.http)": [[51, "RPA.HTTP.HTTP"]], "robot_library_doc_format (rpa.http.http attribute)": [[51, "RPA.HTTP.HTTP.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.http.http attribute)": [[51, "RPA.HTTP.HTTP.ROBOT_LIBRARY_SCOPE"]], "check_vulnerabilities() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.check_vulnerabilities"]], "create_client_cert_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_client_cert_session"]], "create_custom_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_custom_session"]], "create_digest_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_digest_session"]], "create_ntlm_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_ntlm_session"]], "create_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.create_session"]], "delete_all_sessions() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.delete_all_sessions"]], "delete_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.delete_on_session"]], "delete_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.delete_request"]], "download() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.download"]], "get_current_session_alias() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.get_current_session_alias"]], "get_file_for_streaming_upload() (rpa.http.http static method)": [[51, "RPA.HTTP.HTTP.get_file_for_streaming_upload"]], "get_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.get_on_session"]], "get_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.get_request"]], "head_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.head_on_session"]], "head_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.head_request"]], "http_get() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.http_get"]], "options_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.options_on_session"]], "options_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.options_request"]], "patch_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.patch_on_session"]], "patch_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.patch_request"]], "post_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.post_on_session"]], "post_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.post_request"]], "put_on_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.put_on_session"]], "put_request() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.put_request"]], "request_should_be_successful() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.request_should_be_successful"]], "session_exists() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_exists"]], "session_less_delete() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_delete"]], "session_less_get() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_get"]], "session_less_head() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_head"]], "session_less_options() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_options"]], "session_less_patch() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_patch"]], "session_less_post() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_post"]], "session_less_put() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.session_less_put"]], "status_should_be() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.status_should_be"]], "to_json() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.to_json"]], "update_session() (rpa.http.http method)": [[51, "RPA.HTTP.HTTP.update_session"]], "builtin_plural_map (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.BUILTIN_PLURAL_MAP"]], "builtin_singular_map (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.BUILTIN_SINGULAR_MAP"]], "hubspot (class in rpa.hubspot)": [[53, "RPA.Hubspot.Hubspot"]], "robot_auto_keywords (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.hubspot.hubspot attribute)": [[53, "RPA.Hubspot.Hubspot.ROBOT_LIBRARY_SCOPE"]], "add_input_to_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.add_input_to_batch"]], "auth_with_api_key() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.auth_with_api_key"]], "auth_with_token() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.auth_with_token"]], "batch_input (rpa.hubspot.hubspot property)": [[53, "RPA.Hubspot.Hubspot.batch_input"]], "clear_current_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.clear_current_batch"]], "create_new_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.create_new_batch"]], "create_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.create_object"]], "execute_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.execute_batch"]], "extend_batch_with_inputs() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.extend_batch_with_inputs"]], "get_current_batch() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_current_batch"]], "get_current_batch_inputs() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_current_batch_inputs"]], "get_current_stage_of_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_current_stage_of_object"]], "get_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_object"]], "get_owner_by_id() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_owner_by_id"]], "get_owner_of_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_owner_of_object"]], "get_pipeline() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_pipeline"]], "get_pipeline_stages() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_pipeline_stages"]], "get_user() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.get_user"]], "list_associations() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.list_associations"]], "list_pipelines() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.list_pipelines"]], "pipelines (rpa.hubspot.hubspot property)": [[53, "RPA.Hubspot.Hubspot.pipelines"]], "schemas (rpa.hubspot.hubspot property)": [[53, "RPA.Hubspot.Hubspot.schemas"]], "search_for_objects() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.search_for_objects"]], "set_association() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.set_association"]], "set_current_batch_input() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.set_current_batch_input"]], "update_object() (rpa.hubspot.hubspot method)": [[53, "RPA.Hubspot.Hubspot.update_object"]], "images (class in rpa.images)": [[55, "RPA.Images.Images"]], "robot_library_doc_format (rpa.images.images attribute)": [[55, "RPA.Images.Images.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.images.images attribute)": [[55, "RPA.Images.Images.ROBOT_LIBRARY_SCOPE"]], "crop_image() (rpa.images.images method)": [[55, "RPA.Images.Images.crop_image"]], "find_template_in_image() (rpa.images.images method)": [[55, "RPA.Images.Images.find_template_in_image"]], "get_pixel_color_in_image() (rpa.images.images method)": [[55, "RPA.Images.Images.get_pixel_color_in_image"]], "show_region_in_image() (rpa.images.images method)": [[55, "RPA.Images.Images.show_region_in_image"]], "javaaccessbridge (class in rpa.javaaccessbridge)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge"]], "robot_auto_keywords (rpa.javaaccessbridge.javaaccessbridge attribute)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.javaaccessbridge.javaaccessbridge attribute)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.javaaccessbridge.javaaccessbridge attribute)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.ROBOT_LIBRARY_SCOPE"]], "application_refresh() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.application_refresh"]], "call_element_action() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.call_element_action"]], "click_coordinates() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.click_coordinates"]], "click_element() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.click_element"]], "click_push_button() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.click_push_button"]], "close_java_window() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.close_java_window"]], "get_element_actions() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_element_actions"]], "get_element_text() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_element_text"]], "get_elements() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_elements"]], "get_locator_tree() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_locator_tree"]], "get_version_info() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.get_version_info"]], "highlight_element() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.highlight_element"]], "list_java_windows() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.list_java_windows"]], "press_keys() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.press_keys"]], "print_element_tree() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.print_element_tree"]], "print_locator_tree() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.print_locator_tree"]], "read_table() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.read_table"]], "refresh_element() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.refresh_element"]], "select_menu() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.select_menu"]], "select_window() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.select_window"]], "select_window_by_pid() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.select_window_by_pid"]], "select_window_by_title() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.select_window_by_title"]], "set_display_scale_factor() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.set_display_scale_factor"]], "set_mouse_position() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.set_mouse_position"]], "shutdown_jab() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.shutdown_jab"]], "toggle_drop_down() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.toggle_drop_down"]], "type_text() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.type_text"]], "wait_until_element_exists() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.wait_until_element_exists"]], "wait_until_element_is_focused() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.wait_until_element_is_focused"]], "wait_until_element_text_contains() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.wait_until_element_text_contains"]], "wait_until_element_text_equals() (rpa.javaaccessbridge.javaaccessbridge method)": [[57, "RPA.JavaAccessBridge.JavaAccessBridge.wait_until_element_text_equals"]], "json (class in rpa.json)": [[59, "RPA.JSON.JSON"]], "robot_library_doc_format (rpa.json.json attribute)": [[59, "RPA.JSON.JSON.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.json.json attribute)": [[59, "RPA.JSON.JSON.ROBOT_LIBRARY_SCOPE"]], "add_to_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.add_to_json"]], "convert_json_to_string() (rpa.json.json method)": [[59, "RPA.JSON.JSON.convert_json_to_string"]], "convert_string_to_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.convert_string_to_json"]], "delete_from_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.delete_from_json"]], "get_value_from_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.get_value_from_json"]], "get_values_from_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.get_values_from_json"]], "load_json_from_file() (rpa.json.json method)": [[59, "RPA.JSON.JSON.load_json_from_file"]], "save_json_to_file() (rpa.json.json method)": [[59, "RPA.JSON.JSON.save_json_to_file"]], "update_value_to_json() (rpa.json.json method)": [[59, "RPA.JSON.JSON.update_value_to_json"]], "mfa (class in rpa.mfa)": [[61, "RPA.MFA.MFA"]], "robot_library_doc_format (rpa.mfa.mfa attribute)": [[61, "RPA.MFA.MFA.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.mfa.mfa attribute)": [[61, "RPA.MFA.MFA.ROBOT_LIBRARY_SCOPE"]], "generate_oauth_url() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.generate_oauth_url"]], "get_counter_based_otp() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.get_counter_based_otp"]], "get_oauth_token() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.get_oauth_token"]], "get_time_based_otp() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.get_time_based_otp"]], "oauth (rpa.mfa.mfa property)": [[61, "RPA.MFA.MFA.oauth"]], "refresh_oauth_token() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.refresh_oauth_token"]], "set_counter_based_otp() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.set_counter_based_otp"]], "set_time_based_otp() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.set_time_based_otp"]], "use_mfa_secret_from_vault() (rpa.mfa.mfa method)": [[61, "RPA.MFA.MFA.use_mfa_secret_from_vault"]], "msgraph (class in rpa.msgraph)": [[63, "RPA.MSGraph.MSGraph"]], "robot_library_doc_format (rpa.msgraph.msgraph attribute)": [[63, "RPA.MSGraph.MSGraph.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.msgraph.msgraph attribute)": [[63, "RPA.MSGraph.MSGraph.ROBOT_LIBRARY_SCOPE"]], "authorize_and_get_token() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.authorize_and_get_token"]], "configure_msgraph_client() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.configure_msgraph_client"]], "create_sharepoint_list() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.create_sharepoint_list"]], "download_file_from_onedrive() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.download_file_from_onedrive"]], "download_file_from_share_link() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.download_file_from_share_link"]], "download_file_from_sharepoint() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.download_file_from_sharepoint"]], "download_folder_from_onedrive() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.download_folder_from_onedrive"]], "find_onedrive_file() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.find_onedrive_file"]], "generate_oauth_authorization_url() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.generate_oauth_authorization_url"]], "get_drive_instance() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_drive_instance"]], "get_file_instance() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_file_instance"]], "get_folder_instance() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_folder_instance"]], "get_items_from_sharepoint_list() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_items_from_sharepoint_list"]], "get_me() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_me"]], "get_scopes() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_scopes"]], "get_sharepoint_site() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.get_sharepoint_site"]], "list_files_in_onedrive_folder() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.list_files_in_onedrive_folder"]], "list_files_in_sharepoint_site_drive() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.list_files_in_sharepoint_site_drive"]], "list_sharepoint_site_drives() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.list_sharepoint_site_drives"]], "refresh_oauth_token() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.refresh_oauth_token"]], "search_for_users() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.search_for_users"]], "upload_file_to_onedrive() (rpa.msgraph.msgraph method)": [[63, "RPA.MSGraph.MSGraph.upload_file_to_onedrive"]], "netsuite (class in rpa.netsuite)": [[65, "RPA.Netsuite.Netsuite"]], "robot_library_doc_format (rpa.netsuite.netsuite attribute)": [[65, "RPA.Netsuite.Netsuite.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.netsuite.netsuite attribute)": [[65, "RPA.Netsuite.Netsuite.ROBOT_LIBRARY_SCOPE"]], "connect() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.connect"]], "get_accounts() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_accounts"]], "get_classifications() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_classifications"]], "get_currencies() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_currencies"]], "get_currency() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_currency"]], "get_departments() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_departments"]], "get_locations() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_locations"]], "get_vendor_bills() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_vendor_bills"]], "get_vendors() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.get_vendors"]], "login() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.login"]], "netsuite_get() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.netsuite_get"]], "netsuite_get_all() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.netsuite_get_all"]], "netsuite_search() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.netsuite_search"]], "netsuite_search_all() (rpa.netsuite.netsuite method)": [[65, "RPA.Netsuite.Netsuite.netsuite_search_all"]], "notifier (class in rpa.notifier)": [[67, "RPA.Notifier.Notifier"]], "robot_library_doc_format (rpa.notifier.notifier attribute)": [[67, "RPA.Notifier.Notifier.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.notifier.notifier attribute)": [[67, "RPA.Notifier.Notifier.ROBOT_LIBRARY_SCOPE"]], "generic_notify() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.generic_notify"]], "notify_email() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_email"]], "notify_gmail() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_gmail"]], "notify_pushover() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_pushover"]], "notify_slack() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_slack"]], "notify_telegram() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_telegram"]], "notify_twilio() (rpa.notifier.notifier method)": [[67, "RPA.Notifier.Notifier.notify_twilio"]], "openai (class in rpa.openai)": [[69, "RPA.OpenAI.OpenAI"]], "robot_library_doc_format (rpa.openai.openai attribute)": [[69, "RPA.OpenAI.OpenAI.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.openai.openai attribute)": [[69, "RPA.OpenAI.OpenAI.ROBOT_LIBRARY_SCOPE"]], "authorize_to_azure_openai() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.authorize_to_azure_openai"]], "authorize_to_openai() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.authorize_to_openai"]], "chat_completion_create() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.chat_completion_create"]], "completion_create() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.completion_create"]], "image_create() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.image_create"]], "image_create_variation() (rpa.openai.openai method)": [[69, "RPA.OpenAI.OpenAI.image_create_variation"]], "app_dispatch (rpa.outlook.application.application attribute)": [[71, "RPA.Outlook.Application.Application.APP_DISPATCH"]], "application (class in rpa.outlook.application)": [[71, "RPA.Outlook.Application.Application"]], "robot_library_doc_format (rpa.outlook.application.application attribute)": [[71, "RPA.Outlook.Application.Application.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.outlook.application.application attribute)": [[71, "RPA.Outlook.Application.Application.ROBOT_LIBRARY_SCOPE"]], "app (rpa.outlook.application.application property)": [[71, "RPA.Outlook.Application.Application.app"]], "close_document() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.close_document"]], "get_emails() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.get_emails"]], "mark_email_as_read() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.mark_email_as_read"]], "move_emails() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.move_emails"]], "open_application() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.open_application"]], "quit_application() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.quit_application"]], "save_email_attachments() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.save_email_attachments"]], "send_email() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.send_email"]], "set_object_property() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.set_object_property"]], "wait_for_email() (rpa.outlook.application.application method)": [[71, "RPA.Outlook.Application.Application.wait_for_email"]], "pdf (class in rpa.pdf)": [[73, "RPA.PDF.PDF"]], "robot_library_doc_format (rpa.pdf.pdf attribute)": [[73, "RPA.PDF.PDF.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.pdf.pdf attribute)": [[73, "RPA.PDF.PDF.ROBOT_LIBRARY_SCOPE"]], "add_library_components() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.add_library_components"]], "get_keyword_arguments() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_arguments"]], "get_keyword_documentation() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_documentation"]], "get_keyword_names() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_names"]], "get_keyword_source() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_source"]], "get_keyword_tags() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_tags"]], "get_keyword_types() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.get_keyword_types"]], "run_keyword() (rpa.pdf.pdf method)": [[73, "RPA.PDF.PDF.run_keyword"]], "process (class in rpa.robocorp.process)": [[75, "RPA.Robocorp.Process.Process"]], "robot_auto_keywords (rpa.robocorp.process.process attribute)": [[75, "RPA.Robocorp.Process.Process.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.robocorp.process.process attribute)": [[75, "RPA.Robocorp.Process.Process.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.robocorp.process.process attribute)": [[75, "RPA.Robocorp.Process.Process.ROBOT_LIBRARY_SCOPE"]], "base_api (rpa.robocorp.process.process property)": [[75, "RPA.Robocorp.Process.Process.base_api"]], "create_input_work_item() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.create_input_work_item"]], "get_process_id_by_name() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.get_process_id_by_name"]], "get_process_run_status() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.get_process_run_status"]], "get_robot_run_artifact() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.get_robot_run_artifact"]], "get_work_item() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.get_work_item"]], "headers (rpa.robocorp.process.process property)": [[75, "RPA.Robocorp.Process.Process.headers"]], "list_process_run_work_items() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_process_run_work_items"]], "list_process_runs() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_process_runs"]], "list_process_runs_in_workspace() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_process_runs_in_workspace"]], "list_process_work_items() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_process_work_items"]], "list_processes() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_processes"]], "list_run_artifacts() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.list_run_artifacts"]], "process_api() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.process_api"]], "register_file_upload() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.register_file_upload"]], "retry_work_item() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.retry_work_item"]], "set_apikey() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.set_apikey"]], "set_credentials() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.set_credentials"]], "set_process_id() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.set_process_id"]], "set_workspace_id() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.set_workspace_id"]], "start_configured_process() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.start_configured_process"]], "start_process() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.start_process"]], "upload_file_to_s3() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.upload_file_to_s3"]], "workspace_api() (rpa.robocorp.process.process method)": [[75, "RPA.Robocorp.Process.Process.workspace_api"]], "robot_library_doc_format (rpa.robocorp.vault.vault attribute)": [[77, "RPA.Robocorp.Vault.Vault.ROBOT_LIBRARY_DOC_FORMAT"], [79, "RPA.Robocorp.Vault.Vault.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.robocorp.vault.vault attribute)": [[77, "RPA.Robocorp.Vault.Vault.ROBOT_LIBRARY_SCOPE"], [79, "RPA.Robocorp.Vault.Vault.ROBOT_LIBRARY_SCOPE"]], "vault (class in rpa.robocorp.vault)": [[77, "RPA.Robocorp.Vault.Vault"], [79, "RPA.Robocorp.Vault.Vault"]], "adapter (rpa.robocorp.vault.vault property)": [[77, "RPA.Robocorp.Vault.Vault.adapter"], [79, "RPA.Robocorp.Vault.Vault.adapter"]], "get_secret() (rpa.robocorp.vault.vault method)": [[77, "RPA.Robocorp.Vault.Vault.get_secret"], [79, "RPA.Robocorp.Vault.Vault.get_secret"]], "set_secret() (rpa.robocorp.vault.vault method)": [[77, "RPA.Robocorp.Vault.Vault.set_secret"], [79, "RPA.Robocorp.Vault.Vault.set_secret"]], "email_body_loaders (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.EMAIL_BODY_LOADERS"]], "robot_auto_keywords (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.ROBOT_LIBRARY_SCOPE"]], "robot_listener_api_version (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.ROBOT_LISTENER_API_VERSION"]], "workitems (class in rpa.robocorp.workitems)": [[81, "RPA.Robocorp.WorkItems.WorkItems"]], "active_input (rpa.robocorp.workitems.workitems property)": [[81, "RPA.Robocorp.WorkItems.WorkItems.active_input"]], "adapter (rpa.robocorp.workitems.workitems property)": [[81, "RPA.Robocorp.WorkItems.WorkItems.adapter"]], "add_work_item_file() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.add_work_item_file"]], "add_work_item_files() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.add_work_item_files"]], "clear_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.clear_work_item"]], "create_output_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.create_output_work_item"]], "current (rpa.robocorp.workitems.workitems property)": [[81, "RPA.Robocorp.WorkItems.WorkItems.current"]], "delete_work_item_variables() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.delete_work_item_variables"]], "for_each_input_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.for_each_input_work_item"]], "get_current_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_current_work_item"]], "get_input_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_input_work_item"]], "get_work_item_file() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_file"]], "get_work_item_files() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_files"]], "get_work_item_payload() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_payload"]], "get_work_item_variable() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_variable"]], "get_work_item_variables() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.get_work_item_variables"]], "inputs (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.inputs"]], "list_work_item_files() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.list_work_item_files"]], "list_work_item_variables() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.list_work_item_variables"]], "outputs (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.outputs"]], "release_input_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.release_input_work_item"]], "remove_work_item_file() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.remove_work_item_file"]], "remove_work_item_files() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.remove_work_item_files"]], "root (rpa.robocorp.workitems.workitems attribute)": [[81, "RPA.Robocorp.WorkItems.WorkItems.root"]], "save_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.save_work_item"]], "set_current_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_current_work_item"]], "set_task_variables_from_work_item() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_task_variables_from_work_item"]], "set_work_item_payload() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_work_item_payload"]], "set_work_item_variable() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_work_item_variable"]], "set_work_item_variables() (rpa.robocorp.workitems.workitems method)": [[81, "RPA.Robocorp.WorkItems.WorkItems.set_work_item_variables"]], "info_level_keywords (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.INFO_LEVEL_KEYWORDS"]], "keywords_to_mute (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.KEYWORDS_TO_MUTE"]], "keywords_to_protect (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.KEYWORDS_TO_PROTECT"]], "robot_library_doc_format (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.ROBOT_LIBRARY_SCOPE"]], "robot_listener_api_version (rpa.robotloglistener.robotloglistener attribute)": [[83, "RPA.RobotLogListener.RobotLogListener.ROBOT_LISTENER_API_VERSION"]], "robotloglistener (class in rpa.robotloglistener)": [[83, "RPA.RobotLogListener.RobotLogListener"]], "end_keyword() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.end_keyword"]], "mute_run_on_failure() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.mute_run_on_failure"]], "only_info_level() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.only_info_level"]], "register_protected_keywords() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.register_protected_keywords"]], "start_keyword() (rpa.robotloglistener.robotloglistener method)": [[83, "RPA.RobotLogListener.RobotLogListener.start_keyword"]], "robot_library_doc_format (rpa.salesforce.salesforce attribute)": [[85, "RPA.Salesforce.Salesforce.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.salesforce.salesforce attribute)": [[85, "RPA.Salesforce.Salesforce.ROBOT_LIBRARY_SCOPE"]], "salesforce (class in rpa.salesforce)": [[85, "RPA.Salesforce.Salesforce"]], "account (rpa.salesforce.salesforce attribute)": [[85, "RPA.Salesforce.Salesforce.account"]], "add_product_into_opportunity() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.add_product_into_opportunity"]], "auth_with_connected_app() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.auth_with_connected_app"]], "auth_with_token() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.auth_with_token"]], "create_new_opportunity() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.create_new_opportunity"]], "create_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.create_salesforce_object"]], "delete_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.delete_salesforce_object"]], "describe_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.describe_salesforce_object"]], "execute_apex() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.execute_apex"]], "execute_dataloader_insert() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.execute_dataloader_insert"]], "get_dataloader_error_table() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_dataloader_error_table"]], "get_dataloader_success_table() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_dataloader_success_table"]], "get_domain() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_domain"]], "get_opportunity_id() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_opportunity_id"]], "get_pricebook_entries() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_pricebook_entries"]], "get_pricebook_id() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_pricebook_id"]], "get_products_in_pricelist() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_products_in_pricelist"]], "get_salesforce_object_by_id() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_salesforce_object_by_id"]], "get_salesforce_object_metadata() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.get_salesforce_object_metadata"]], "instance (rpa.salesforce.salesforce property)": [[85, "RPA.Salesforce.Salesforce.instance"]], "read_dictionary_from_file() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.read_dictionary_from_file"]], "salesforce_query() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.salesforce_query"]], "salesforce_query_result_as_table() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.salesforce_query_result_as_table"]], "session_id (rpa.salesforce.salesforce property)": [[85, "RPA.Salesforce.Salesforce.session_id"]], "set_account() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.set_account"]], "set_domain() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.set_domain"]], "set_pricebook() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.set_pricebook"]], "update_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.update_salesforce_object"]], "upsert_salesforce_object() (rpa.salesforce.salesforce method)": [[85, "RPA.Salesforce.Salesforce.upsert_salesforce_object"]], "robot_library_scope (rpa.sap.sap attribute)": [[87, "RPA.SAP.SAP.ROBOT_LIBRARY_SCOPE"]], "sap (class in rpa.sap)": [[87, "RPA.SAP.SAP"]], "click_element() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.click_element"]], "click_toolbar_button() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.click_toolbar_button"]], "connect_to_existing_connection() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.connect_to_existing_connection"]], "connect_to_session() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.connect_to_session"]], "disable_screenshots_on_error() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.disable_screenshots_on_error"]], "doubleclick_element() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.doubleclick_element"]], "element_should_be_present() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.element_should_be_present"]], "element_value_should_be() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.element_value_should_be"]], "element_value_should_contain() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.element_value_should_contain"]], "enable_screenshots_on_error() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.enable_screenshots_on_error"]], "focus_and_click() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.focus_and_click"]], "focus_and_input_text() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.focus_and_input_text"]], "generic_click_element() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.generic_click_element"]], "generic_input_password() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.generic_input_password"]], "generic_input_text() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.generic_input_text"]], "get_cell_value() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_cell_value"]], "get_element_location() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_element_location"]], "get_element_type() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_element_type"]], "get_element_type_of_object() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_element_type_of_object"]], "get_row_count() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_row_count"]], "get_scroll_position() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_scroll_position"]], "get_statusbar_type() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_statusbar_type"]], "get_value() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_value"]], "get_window_title() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.get_window_title"]], "input_password() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.input_password"]], "input_text() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.input_text"]], "maximize_window() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.maximize_window"]], "open_connection() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.open_connection"]], "press_f1() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.press_f1"]], "press_f4() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.press_f4"]], "run_transaction() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.run_transaction"]], "scroll() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.scroll"]], "select_checkbox() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_checkbox"]], "select_context_menu_item() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_context_menu_item"]], "select_from_list_by_label() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_from_list_by_label"]], "select_node() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_node"]], "select_node_link() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_node_link"]], "select_radio_button() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_radio_button"]], "select_table_column() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_table_column"]], "select_table_row() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.select_table_row"]], "send_vkey() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.send_vkey"]], "set_cell_value() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.set_cell_value"]], "set_explicit_wait() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.set_explicit_wait"]], "set_focus() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.set_focus"]], "take_screenshot() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.take_screenshot"]], "unselect_checkbox() (rpa.sap.sap method)": [[87, "RPA.SAP.SAP.unselect_checkbox"]], "robot_library_doc_format (rpa.slack.slack attribute)": [[89, "RPA.Slack.Slack.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.slack.slack attribute)": [[89, "RPA.Slack.Slack.ROBOT_LIBRARY_SCOPE"]], "slack (class in rpa.slack)": [[89, "RPA.Slack.Slack"]], "slack_message_using_webhook() (rpa.slack.slack method)": [[89, "RPA.Slack.Slack.slack_message_using_webhook"]], "slack_raw_message() (rpa.slack.slack method)": [[89, "RPA.Slack.Slack.slack_raw_message"]], "robot_auto_keywords (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROBOT_AUTO_KEYWORDS"]], "robot_library_doc_format (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROBOT_LIBRARY_SCOPE"]], "row_excludes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROW_EXCLUDES"]], "row_includes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.ROW_INCLUDES"]], "search_includes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.SEARCH_INCLUDES"]], "search_scopes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.SEARCH_SCOPES"]], "sheet_includes (rpa.smartsheet.smartsheet attribute)": [[91, "RPA.Smartsheet.Smartsheet.SHEET_INCLUDES"]], "smartsheet (class in rpa.smartsheet)": [[91, "RPA.Smartsheet.Smartsheet"]], "add_column() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.add_column"]], "add_columns() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.add_columns"]], "add_rows() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.add_rows"]], "convert_row_to_dict() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.convert_row_to_dict"]], "convert_sheet_to_table() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.convert_sheet_to_table"]], "create_sheet() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.create_sheet"]], "download_attachment() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.download_attachment"]], "get_application_constants() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_application_constants"]], "get_cell_history() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_cell_history"]], "get_current_user() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_current_user"]], "get_row() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_row"]], "get_sheet() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_sheet"]], "get_sheet_owner() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.get_sheet_owner"]], "list_attachments() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.list_attachments"]], "list_columns() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.list_columns"]], "list_sheet_filters() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.list_sheet_filters"]], "list_sheets() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.list_sheets"]], "refresh_sheet() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.refresh_sheet"]], "search() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.search"]], "set_access_token() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.set_access_token"]], "set_max_retry_time() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.set_max_retry_time"]], "set_row() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.set_row"]], "set_rows() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.set_rows"]], "sheets (rpa.smartsheet.smartsheet property)": [[91, "RPA.Smartsheet.Smartsheet.sheets"]], "unselect_current_sheet() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.unselect_current_sheet"]], "update_column() (rpa.smartsheet.smartsheet method)": [[91, "RPA.Smartsheet.Smartsheet.update_column"]], "robot_library_doc_format (rpa.tables.tables attribute)": [[93, "RPA.Tables.Tables.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.tables.tables attribute)": [[93, "RPA.Tables.Tables.ROBOT_LIBRARY_SCOPE"]], "tables (class in rpa.tables)": [[93, "RPA.Tables.Tables"]], "add_table_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.add_table_column"]], "add_table_row() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.add_table_row"]], "clear_table() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.clear_table"]], "copy_table() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.copy_table"]], "create_table() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.create_table"]], "export_table() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.export_table"]], "filter_empty_rows() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.filter_empty_rows"]], "filter_table_by_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.filter_table_by_column"]], "filter_table_with_keyword() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.filter_table_with_keyword"]], "find_table_rows() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.find_table_rows"]], "get_table_cell() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_cell"]], "get_table_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_column"]], "get_table_dimensions() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_dimensions"]], "get_table_row() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_row"]], "get_table_slice() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.get_table_slice"]], "group_table_by_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.group_table_by_column"]], "map_column_values() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.map_column_values"]], "merge_tables() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.merge_tables"]], "pop_table_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.pop_table_column"]], "pop_table_row() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.pop_table_row"]], "read_table_from_csv() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.read_table_from_csv"]], "rename_table_columns() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.rename_table_columns"]], "set_row_as_column_names() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.set_row_as_column_names"]], "set_table_cell() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.set_table_cell"]], "set_table_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.set_table_column"]], "set_table_row() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.set_table_row"]], "sort_table_by_column() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.sort_table_by_column"]], "table_head() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.table_head"]], "table_tail() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.table_tail"]], "trim_column_names() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.trim_column_names"]], "trim_empty_rows() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.trim_empty_rows"]], "write_table_to_csv() (rpa.tables.tables method)": [[93, "RPA.Tables.Tables.write_table_to_csv"]], "robot_library_doc_format (rpa.twitter.twitter attribute)": [[96, "RPA.Twitter.Twitter.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.twitter.twitter attribute)": [[96, "RPA.Twitter.Twitter.ROBOT_LIBRARY_SCOPE"]], "twitter (class in rpa.twitter)": [[96, "RPA.Twitter.Twitter"]], "authorize() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.authorize"]], "follow() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.follow"]], "get_me() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.get_me"]], "get_user_profile() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.get_user_profile"]], "get_user_tweets() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.get_user_tweets"]], "like() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.like"]], "text_search_tweets() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.text_search_tweets"]], "tweet() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.tweet"]], "unfollow() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.unfollow"]], "unlike() (rpa.twitter.twitter method)": [[96, "RPA.Twitter.Twitter.unlike"]], "robot_library_doc_format (rpa.windows.windows attribute)": [[98, "RPA.Windows.Windows.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.windows.windows attribute)": [[98, "RPA.Windows.Windows.ROBOT_LIBRARY_SCOPE"]], "simulate_move (rpa.windows.windows attribute)": [[98, "RPA.Windows.Windows.SIMULATE_MOVE"]], "windows (class in rpa.windows)": [[98, "RPA.Windows.Windows"]], "add_library_components() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.add_library_components"]], "get_keyword_arguments() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_arguments"]], "get_keyword_documentation() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_documentation"]], "get_keyword_names() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_names"]], "get_keyword_source() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_source"]], "get_keyword_tags() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_tags"]], "get_keyword_types() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.get_keyword_types"]], "run_keyword() (rpa.windows.windows method)": [[98, "RPA.Windows.Windows.run_keyword"]], "app_dispatch (rpa.word.application.application attribute)": [[100, "RPA.Word.Application.Application.APP_DISPATCH"]], "application (class in rpa.word.application)": [[100, "RPA.Word.Application.Application"]], "fileformats (rpa.word.application.application attribute)": [[100, "RPA.Word.Application.Application.FILEFORMATS"]], "robot_library_doc_format (rpa.word.application.application attribute)": [[100, "RPA.Word.Application.Application.ROBOT_LIBRARY_DOC_FORMAT"]], "robot_library_scope (rpa.word.application.application attribute)": [[100, "RPA.Word.Application.Application.ROBOT_LIBRARY_SCOPE"]], "app (rpa.word.application.application property)": [[100, "RPA.Word.Application.Application.app"]], "close_document() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.close_document"]], "copy_selection_to_clipboard() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.copy_selection_to_clipboard"]], "create_new_document() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.create_new_document"]], "export_to_pdf() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.export_to_pdf"]], "find_text() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.find_text"]], "get_all_texts() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.get_all_texts"]], "get_current_line() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.get_current_line"]], "get_number_of_lines() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.get_number_of_lines"]], "move_horizontally() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_horizontally"]], "move_to_end() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_to_end"]], "move_to_line_end() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_to_line_end"]], "move_to_line_start() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_to_line_start"]], "move_to_top() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_to_top"]], "move_vertically() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.move_vertically"]], "open_application() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.open_application"]], "open_file() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.open_file"]], "paste_from_clipboard() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.paste_from_clipboard"]], "quit_application() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.quit_application"]], "replace_text() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.replace_text"]], "save_document() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.save_document"]], "save_document_as() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.save_document_as"]], "select_current_paragraph() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.select_current_paragraph"]], "select_paragraph() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.select_paragraph"]], "set_footer() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.set_footer"]], "set_header() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.set_header"]], "set_object_property() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.set_object_property"]], "write_text() (rpa.word.application.application method)": [[100, "RPA.Word.Application.Application.write_text"]]}}) \ No newline at end of file