How I can pass arguments to the robotframework-faker Library import:
* Library FakerLibrary de_DE ---> works as expected
* Library FakerLibrary locale=de_DE ---> works as expected
but with following I got errors:
* Library FakerLibrary seed=124 ---> Initializing test library 'FakerLibrary' with arguments [ seed=124 ] failed: AttributeError: Invalid configuration for faker locale "seed=124"
* Library FakerLibrary locale=de_DE seed=124 ---> Test Library 'FakerLibrary' got positional argument after named arguments.
* Library FakerLibrary locale=de_DE \ seed=124 ---> Test Library 'FakerLibrary' got positional argument after named arguments.
* Library FakerLibrary locale=de_DE providers=None seed=124 ---> Test Library 'FakerLibrary' got positional argument after named arguments.
???