robotframework-extendedselenium2library 0.9.1 Downloads ↓ Extended Selenium2 web testing library for Robot Framework with AngularJS support Introduction ExtendedSelenium2Library is web testing library for Robot Framework that uses the Selenium 2 (WebDriver) libraries from the Selenium project, to control the web browser with AngularJS support. It leverages Selenium2Library internally to provide AngularJS synchronization support, to provide AngularJS locators support, to deliver keywords enhancement, and strive for a seamless migration from Selenium2Library . ExtendedSelenium2Library runs tests in a real browser instance. It should work in most modern browsers and can be used with both Python and Jython interpreters. More information about this library can be found in the Keyword Documentation . Robot Framework and Cucumber Similarities ...
What is a RESTful API? REST (Representational State Transfer) is a simple stateless architecture that uses HTTP protocol. In a Client-Server Application most of the web services use REST API so that clients, third party applications can access its resources using URI (Uniform Resource Identifier) How do we do the Performance testing of RESTful API’s?
I got task for verification number of rows per page after switch "Show" filter. *** Variables ** ${full_xpath} xpath=//div[@id=\'rso\']/div/div/div[ x ]/div/h3/a # not usable ${xpath_part1} xpath=//div[@id=\'rso\']/div/div/div[ ${xpath_part2} ]/div/h3/a *** Keywords *** # Format Method ----------------------------------------------------- Format - Looking by number [Arguments] ${locator1} ${num} ${locator2} wait until elemet dispayed ${locator1}${number}${locator2} *** Test Cases *** # Row x ----------------------------------------------------------------- Verify number of raws by "Show" filter All Format - Looking by number ${ xpath_part1 } @{ num }[ x ] ${ xpath_part2 }
Comments
Post a Comment