robotframework-faker icon indicating copy to clipboard operation
robotframework-faker copied to clipboard

Robot Framework keyword library wrapper for faker

Results 22 robotframework-faker issues
Sort by recently updated
recently updated
newest added

Why I will encounter this issue after executing command below? python -m faker /usr/bin/python: No module named faker

Python:3.8.10,robotframework-faker=5.0.0, import to RIDE 20210616 10:14:24.262 [WARN]: Importing test library "FakerLibrary" failed Traceback (most recent call last): Importing test library 'FakerLibrary' failed: AttributeError: 'PosixPath' object has no attribute 'startswith' Traceback...

Faker Library supports initialization with multiple locales: from faker import Faker fake = Faker(['it_IT', 'en_US', 'ja_JP']) for _ in range(10): print(fake.name()) Whenever I try to initialize library with multiple locales...

When I run the following code, I'm facing some difficulty. Calling the `Add Provider` keyword requires two arguments, instead of the expected 1: name of the module. This seems to...

Many users don't know that to pass data such as integers into keywords, you must use the syntax (for example) `${5}` instead of `5`. I should mention this explicitly in...

Currently, faker docstrings get passed on to RF/libdoc untouched. However, they're not formatted well for this purpose, so they end up looking a bit strange. I might be able to...

The current tests could be made a bit more thorough.

enhancement

The current examples are pretty limited and don't really show any interesting use cases.

it success but failed to use other Fakerlibrary library. would you share how to use in python import FakerLibrary print(FakerLibrary.FakerKeywords().name())

As a Technical Test Engineer I want Faker to support a context to create new items which correlate to the existing data. A test case often consumes a number of...