Dan Michael O. Heggø
Dan Michael O. Heggø
Sorry that we never found time to work on this. I moved to a new position in 2020 right after this, and there was noone else that could take over...
Hi, glad you like it! My current strategy is to have one folder/repo for the production environment and another for sandbox. This is not set in stone though
Interesting, we haven't got that for our instance (luckily). Glad the tutorial helped! Yes, we can make it an optional item in the config file. If you manage to find...
Ah, didn't notice that. It's because `find_element_by_xpath` is defined on the driver, more specifically on `worker.driver`, so I think this should work: ```python element = worker.driver.find_element_by_xpath("//select[@id='pageBeanselectedLocation']") ``` If that works,...
Yes, you have to ask Selenium to wait selecting until it's clickable. Usually, but not always, something like this works: ```python wait = worker.waiter() element = wait.until(EC.element_to_be_clickable((By.XPATH, '//select[@id='pageBeanselectedLocation_hiddenSelect']'))) ```
Agree. Interestingly, there is actually the [Retrieve Code-table API](https://developers.exlibrisgroup.com/alma/apis/conf/GET/gwPcGly021p29HpB7XTI4K7cQ0vuYHLS4NSgDGmcRpRYqx5hIMRTng9SIKO5Vof+/37088dc9-c685-4641-bc7f-60b5ca7cabed) that we could get read the values from. Unfortunately, there is no write API.. I asked some time ago if it...
By active processes, do you mean the Process Log tab?
@chimurai mentioned in https://github.com/chimurai/http-proxy-middleware/issues/985#issuecomment-2067656422 that this is an upstream issue in the (unmaintained) `http-proxy` library. I only started seeing it after upgrading `http-proxy-middleware` from 2.0.6 to 3.0.0 though, which use...
Cool, it would be really nice to have SVG support! You'r implementation looks good to me, but I'm not very familiar with SVG (which is probably also why I never...