jsfehler

Results 31 comments of jsfehler

The documentation currently has a decent number of examples. Due to the age of this issue and lack of specific details, I'm closing it. If there's any specific sections with...

Closing, since #933 has deprecated the browser level functions. browser.find() uses name internally but this is configurable.

When you say the wait_time parameter is ignored, have you observed this with your eyes? Does nothing happen for 30 seconds or does the script appear to continue?

The implementation of `is_element_visible_by_xpath` applied the wait_time argument to both the find element operation and the visibility check. `find_by_xpath().is_visible(30)` will only apply the wait_time to the visibility check. This behaviour...

@andreagrandi Apologies for the extremely late answer: The `ElementNotInteractableException` error is an issue with your test. You can't fill an input if it's not interactable. It's difficult to triage this...

@nburt This sounds like a separate issue. We'll also need a traceback to see the error message your code is throwing.

I don't mind the idea of a single file changelog in the format of https://keepachangelog.com/en/1.0.0/. The last few releases have a format that's compatible, but older changelogs would need to...

I can make the hyperlink more flexible by letting you specify the screen that the hyperlink will call. You could then create a separate view for when hyperlinks are clicked....

this line is missing a closing `)` after `order-1`: `action (SetScreenVariable('order',order-1,enc.FilterBySubject(all_subject[order])))` You also don't need a custom list, the Encyclopaedia object has the attribute [subjects](https://renpy-encyclopaedia.readthedocs.io/en/latest/api/encyclopaedia.html#encyclopaedia.Encyclopaedia.subjects) which you can use instead.

@Nickardson I'd assign abs(xa - origin) to a variable so it doesn't need to be calculated twice.