711child / robotframework-swinglibrary

Automatically exported from code.google.com/p/robotframework-swinglibrary
Other
0 stars 0 forks source link

Bugs in `Select Window` documentation #176

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Select Window keyword has this example:

| Select Window | regexp=H*' | Selects a window starting with letter H. |

It should probably be like this:

| Select Window | regexp=H.* | # Selects a window starting with letter H. |

Depending on how the regexp support is implemented, the correct format may also 
be this:

| Select Window | regexp=^H.* | # Selects a window starting with letter H. |

Original issue reported on code.google.com by pekka.klarck on 6 Sep 2010 at 10:58

GoogleCodeExporter commented 9 years ago

Original comment by KariH...@gmail.com on 7 Sep 2010 at 12:31

GoogleCodeExporter commented 9 years ago
Fixed in r645 and r646.

Original comment by KariH...@gmail.com on 8 Sep 2010 at 11:25