robotframework-pageobjectlibrary
robotframework-pageobjectlibrary copied to clipboard
Lightweight keyword library for implementing the PageObject pattern in Robot Framework
Can this library be used with the new ([playwright based](https://playwright.dev/)) [robotframework-browser library](https://github.com/MarketSquare/robotframework-browser)? Or does it require to use SeleniumLibrary?
PageObjectLibrary/locatormap.py has, 16 | if " " in k in k or "." in k: 17 | raise Exception("Keys cannot have spaces or periods in them") I wonder if the...
Currently this library only allows pages to be registered for one host, by adding a `PAGE_HOST` attribute to the page object we can now have page objects for different hosts.
wait_for_page_refresh, "timeout" parameter not taken into account by the wait_for_condition function
Hello, I use the wait_for_condition function , and I pass a different parameter than the default one. It is taken into account by the WebDriverWait function, but not the wait_for_condition...
For some reason some website with document.readyState == 'complete' just get in this condition, and selenium is getting lost. I tested the same pages with ruby and everything works pretty...
Hi, My product is very complex, it has more than 100 pages, so I don't want to put all the page objects files in the same level's directory. I try...
Init method of user class execute few times. For example my page object class: ``` class ViewFrontageAboutPage(PageObject): def __init__(self): robot.api.logger.console("ViewFrontageAboutPage __init__") ``` robot file `*** Settings *** Library Selenium2Library Library...
Hi Brayan, I'm having problems with error "AttributeError: 'tuple' object has no attribute 'split'" Issue occurs when I use a few times "Go To Page" keyword e.g: ``` Valid Credentials...
DeprecationWarning is a builtin exception and is not part of the warnings module
There is an issue with installation the package against Python 3.6.4 > Downloading https://files.pythonhosted.org/packages/88/21/fa58016bae1a0bbe693ed745d188ef3b01c75ad3b575c9b7cd540522da07/robotframework-pageobjectlibrary-0.1.7.tar.gz > Complete output from command python setup.py egg_info: > Traceback (most recent call last): > File...