Included Dependencies | Show |
Technical Name |
odoo_tests_selenium |
License | See License tab |
Website | https://www.atingo.pl |
Also available in version | v 15.0 v 13.0 v 14.0 v 12.0 v 11.0 v 8.0 v 10.0 |
Included Dependencies | Show |
Technical Name |
odoo_tests_selenium |
License | See License tab |
Website | https://www.atingo.pl |
Also available in version | v 15.0 v 13.0 v 14.0 v 12.0 v 11.0 v 8.0 v 10.0 |

Odoo Tests Selenium
This module requires odoo_tests module! With this module developer is able to run selenium tests. With simple command "test" you are able to run single test, test class or all tests for a module. It support controllers testing! By default browser is ran in background. To show browser during test add special parameter --browser-visible in test example browser will be always shown.
Examples
Run one test
python odoo-bin test --test-name=test_selenium_example_login
Run all tests from test class
python odoo-bin test --test-class=TestSeleniumExample
Run all tests from module
python odoo-bin test --test-module=odoo_tests_selenium
Run all tests from modules
python odoo-bin test --test-modules=odoo_tests_selenium,web
In examples above default configuration file has db_name=v14_atingo. User can select target db as in example below:
python odoo-bin test --database=v14_odoo_vanilla --test-name=test_selenium_example_login
This module must be imported from default path. It won't work with selected custom configuration file
python odoo-bin test --config=/home/tkarpinski/odoo_14/conf/odoo.conf
Configuration file with path to custom addons should be coming from default path. If this is not possible, add this module to odoo/addons directly
Preinit
Before you start working with this module apply suggestions above. This module is using additional python modules, you can install them from requirements.txt
Details
odoo_tests module checks selected tests. If test inherits HttpCase a new odoo instance with shared cursor will be started. If test inherits SeleniumHttpCase a new browser will be shown. Thanks to it user can test controllers. You can find example in tests/test_selenium_example.py. In this example a new user is created, browser is opened and there logging is is processed. This is a test so all data will be rollbacked!
Check out my youtube channel to learn more!
In case of any questions don't hesitate to email me: tadeusz.karpinski@gmail.com
Screenshots
Screenshot 1

Screenshot 2

Screenshot 3

Screenshot 4

Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module