Petr Bodnár
Petr Bodnár
The build on Travis seems to be broken for 2 main reasons now: 1. Python 3.3 seems to be no longer available for download and builds, that's why the last...
Once again, this is a problem found in the `Footnote`s parsing and while such a use is probably pretty rare, it would be good to have this fixed. An example...
From my point of view, there are currently two gotchas about the "contrib" folder: 1. If one just installs mistletoe by running `pip install mistletoe` (or `pip install .` after...
The LaTeX renderer doesn't currently do any URL escaping in links: ``` python def render_link(self, token): self.packages['hyperref'] = [] template = '\\href{{{target}}}{{{inner}}}' inner = self.render_inner(token) return template.format(target=token.target, inner=inner) ``` This...
If you use if-then-else or the looping commands, the test logic is hardly readable without having the nested commands indented. Can you please implement a visual indentation as can be...
This bug is pretty evident and therefore surprising for me: Just use the Recorder for a while - add new commads, navigate away from the recorder window and back and...
In the "Reference" tab for the sendKeys command, there is this sentence: > For special keys (e.g. ${KEY_ENTER}, ${KEY_SHIFT}, etc.), only Chrome version of the extension is supported. Luckily, this...
See this page, for example: [Tip: How to use an Input Dialog in a Recorder Script](https://forum.katalon.com/t/tip-how-to-use-an-input-dialog-in-a-recorder-script/11468). Probably because this use case and mainly the `runScript` is undocumented, the author recommends...
If one reads the documentation for how to create extension scripts: https://docs.katalon.com/katalon-recorder/docs/extension-scripts-aka-user-extensionsjs-for-custom-locator-builders-and-actions.html ... he/she might get a feeling that new commands available due to the extension scripts will be somehow...
Hi, this is on the https://jhades.github.io/documentation.html page: ``` java -jar jhades-standalone-report.jar -Ddetail=true path/to/war/webapp.war ``` It needs to be (see [documentation for java](https://docs.oracle.com/javase/8/docs/technotes/tools/windows/java.html)): ``` java -Ddetail=true -jar jhades-standalone-report.jar path/to/war/webapp.war ``` Also...