montovaneli

Results 10 comments of montovaneli

The selenium-wire docs (https://pypi.org/project/selenium-wire/#bot-detection) says that it automatically integrates with undetected-chromedriver if it finds it in your environment. So I really didn't understand your question.

@wolfgangpfnuer i went through the same problem and i realized that if i create my DataTable using an empty pandas DataFrame with one column, it works. Try it yourself, for...

@rp2532 that is because you are returning empty lists when you don't have uploaded data. Try this: ``` import dash import dash_core_components as dcc import dash_html_components as html from dash.dependencies...

Regarding this issue, I analyzed the app_windows.go file and saw that the toast template used is ToastText02, which does not allow images. We can use ToastImageAndText02, for example. Moreover, in...

> That sounds like a clever approach, thanks. Can you open a PR to that extent and we can work through getting it included? > > Thanks! Done! #4764

For old selenium (< 4.10): dc = DesiredCapabilities.CHROME.copy() dc["goog:loggingPrefs"] = {"browser":"INFO"} For "new" selenium (>=4.10), you need to place it using options.set_capability: options = webdriver.ChromeOptions() options.set_capability("goog:loggingPrefs", {browser: "INFO"})

Sorry to jump into the discussion, but I'm really interested in this pull request. I have a case using a list + new paragraph that doesn't seem right. Testing on...

Sometimes this also happens here. Even though the theme is correctly set in the 'fyne elements', the Windows' own window top bar remains in light theme, as in the print...

I don't know if it's an issue, but since the `deconstruct_browser()` function from core/util.py is being called only when the program exits, the `__registered__instances__` set increases after every `uc.start()` and...

Same goes for `current_timestamp` ![image](https://github.com/user-attachments/assets/e7982baf-4c01-4b88-93f0-37fdbeb5e970) @E1izabeth