Michael Mintz

Results 142 comments of Michael Mintz

@PankajSavaliya For changing the timezone, you'll have to find an extension that does it. I hear they exist, but I don't know one off the top of my head directly.

Adding an extension: https://github.com/seleniumbase/SeleniumBase/blob/1c526f1c02a9c7f4ec538d1600829acff44aa05e/seleniumbase/plugins/sb_manager.py#L74

See https://github.com/seleniumbase/SeleniumBase/issues/3029 for the 3rd video!

It's slightly more complicated than what TensorPy offers right now, but I would start with https://www.youtube.com/watch?v=QfNvhPx5Px8 "Build a TensorFlow Image Classifier in 5 Min"

Hi @gyillikci , if you could find a way to add to the preexisting trained model as easily as it is to classify a new image, that would be very...

With Jonathan Frakes (who played William T. Riker) And with LeVar Burton (who played Geordi LaForge) ![riker](https://github.com/seleniumbase/SeleniumBase/assets/6788579/72c64460-9c32-4347-aa3a-5fe42aba2cc5) ![geordi](https://github.com/seleniumbase/SeleniumBase/assets/6788579/3aa50590-edce-4949-93e4-00f0f1a84bd0)

I created a video from the event: https://www.youtube.com/watch?v=BwHc4lIS5z8

There is a solution. The code below works on `seleniumbase` `4.26.4` (or newer) after installing `pyautogui`: ```python import pyautogui from seleniumbase import SB with SB(uc=True) as sb: sb.open("https://form-page.tiiny.site") sb.uc_click("input", timeout=2,...

For non UC Mode headless seleniumbase, you wouldn't need pyautogui at all. But for maximum stealth in UC Mode, use a headed browser.

If your issue is related to Chrome 115, then according to https://github.com/SeleniumHQ/selenium/milestone/12, the earliest that the fix will be available in `selenium` is sometime next week. Until then, you can...