Milan Falešník

Results 20 comments of Milan Falešník

@Voronoff still nothing? :)

Doesn't even check flash messages https://github.com/RedHatQE/cfme_tests/blob/ab945813f22a27b2f3766141bad3f57d4c868e37/cfme/configure/configuration/__init__.py#L1808

pytest could support some sort of "global parameters" which would get defined on the start of the pytest process before collection. Those then could be static like parameters.

@RonnyPfannschmidt I wonder, can we at least do a quick package listing when running the quickstart in virtualenv to warn the user the system dependencies were updated to run a...

Doing `rpm -q $PACKAGE_1 $PACKAGE_2 ... $PACKAGE_N` should be reasonably quick and returns 0 if all packages are installed

I think using exceptions may be more beneficial, you just do: ```python with some_expected_error_thing(FlashMessageException): create_bad_entity() ``` If a different error happens, it throws a different exception and that can be...

RTD refuses to build WT documentation, so I let my private Jenkins build it. The resulting documentation is therefore placed in https://up.falesnik.net/wt-doc/ until RTD can build the documentation again.

Okay, so, you only need LoginPage and then let's say LoggedInPage nav steps. Nothing more. When you test logging in and logging out, you can have helper methods that log...

@RonnyPfannschmidt Perhaps a custom super wrapper that "unwraps" the underlying browser from its wrapping would do. Instead of `super(MyBrowser, self)` one would call something like `self.super(MyBrowser)` and it would: 1....