jsfehler

Results 22 comments of jsfehler

@stealthycoin Having had an immediate need for exposing documentation, I wrote a library that monkey patches chalice to add models. https://pypi.org/project/leangle/ It's a bit different from your implementation. It lacks...

Updated to use l.simple_expression instead of l.string. I hesitate to add a return annotation in this PR, like: `label talk_with_shopkeeper(current_money: int) -> "jump back to downtown"` It's not really a...

@renpytom Thinking about an effective way to unit test this. Does something like the following make sense: ``` def test_parameter_annotations_no_default_value(): block = "screen test_screen(qty: int):" lex = Lexer(block) result =...

@andrewsmedina The following version 1.0 issues could probably be closed. #166 #333 #455 #520 #579

I've investigated #172 briefly and it appears to be a unicode encoding issue. I think it should be up to the user to encode their strings as utf-8.

@andrewsmedina Remote Webdriver already supports a headless mode by supplying an Options object with the correct parameters. I don't see a benefit to adding more arguments to the Remote class....

@schurma Your change wouldn't really make the code more resilient, not unless you know Google will never change the text in their submit button. It also introduces a breaking changes...

@Vishvesh-Kodihal What company do you work for? Is anyone from your company willing/able to provide a testimonial?

This seems like something better served by an example in the documentation for now. Since it's essentially: ``` some_text = "some text spread across multiple elements" find_by_xpath(f'//*[.="{some_text}"]') ``` A well...