widgetastic.core icon indicating copy to clipboard operation
widgetastic.core copied to clipboard

Making testing of UIs fantastic.

Results 31 widgetastic.core issues
Sort by recently updated
recently updated
newest added

updates: - [github.com/astral-sh/ruff-pre-commit: v0.3.5 → v0.5.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.3.5...v0.5.6) - [github.com/pre-commit/mirrors-mypy: v1.9.0 → v1.11.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.9.0...v1.11.1)

`sensitive` parameter was introduced recently, but it was not reflected in log function decorator. This PR changes behaviour to hide all attributes except the safe ones.

"force_scroll" only works on Firefox and I see this is hard coded for some reason in several places in the below file including the one referenced in the below line...

When using chrome browser in selenium, calls to `TextInput.fill("")` to clear a textarea element does not work. Looking at the browser console in the selenium container, I can see that...

- WT enough mature now. Its possible to move it for handle different windows like `IFrame` (View level) Implementation. - I tried some stuff but facing problem mean `id` is...

enhancement

In Satellite, we have a page with multiple tabs. One of the tabs has two checkboxes and their state determines content of table below. Checkboxes state is reset when you...

What we do: ``` class AirgunBrowser(Browser): def wait_for_element(...): return super(AirgunBrowser, self).wait_for_element(...) ``` Then we do: ``` class MyView(View): def is_displayed(self): return self.browser.wait_for_element(...) class MyOtherView(View): class MyTab(Tab): view = MyView() ```...

bug

Table widget was developed very simple in the beginning and it worked great until we ran into colspan/rowspan tables. Attempts to slightly refactor existing objects to add support of colspan/rowspan...