Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #62038 > unrolled thread

Launching Helium: A Selenium wrapper that makes web automation 50% easier

Started byMichael Herrmann <michael.herrmann@heliumhq.com>
First post2013-12-16 02:17 -0800
Last post2013-12-16 05:18 -0800
Articles 3 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  Launching Helium: A Selenium wrapper that makes web automation 50% easier Michael Herrmann <michael.herrmann@heliumhq.com> - 2013-12-16 02:17 -0800
    Re: Launching Helium: A Selenium wrapper that makes web automation 50% easier Larry Martell <larry.martell@gmail.com> - 2013-12-16 06:40 -0500
      Re: Launching Helium: A Selenium wrapper that makes web automation 50% easier Michael Herrmann <michael.herrmann@heliumhq.com> - 2013-12-16 05:18 -0800

#62038 — Launching Helium: A Selenium wrapper that makes web automation 50% easier

FromMichael Herrmann <michael.herrmann@heliumhq.com>
Date2013-12-16 02:17 -0800
SubjectLaunching Helium: A Selenium wrapper that makes web automation 50% easier
Message-ID<bcabd398-510c-4a7b-ae1a-05ac72695a36@googlegroups.com>
Hi everyone,

I'm working for a startup called BugFree Software and would like to announce that today we're launching our second product!

Helium is a library that wraps around Selenium to simplify web automation. It does away with many of the technicalities involved with web scripting. For example: Here is a Selenium script. Can you guess what it does?

    >>> ff = Firefox()
    ...
    >>> text_area = ff.find_element_by_id("u_0_1q")
    >>> text_area.send_keys("Hello World!")
    >>> button = ff.find_element_by_class_name("_42g-")
    >>> button.click()

Here is the same script rewritten using Helium:

    >>> start_firefox()
    ...
    >>> write("Hello World!", into="Update Status")
    >>> click("Post")

Can you now guess what it does? That's right; It updates your Facebook status.

In an extended comparison that we were invited to write for the December issue of Professional Tester (professionaltester.com), we found that an example script automating Gmail took 66% fewer lines of code and 75% less effort using Helium than with Selenium alone.

You can find more information and download Helium from http://heliumhq.com. Any feedback would be highly appreciated.

Hoping to hear your thoughts and comments,
Michael Herrmann
heliumhq.com

[toc] | [next] | [standalone]


#62045

FromLarry Martell <larry.martell@gmail.com>
Date2013-12-16 06:40 -0500
Message-ID<mailman.4203.1387194062.18130.python-list@python.org>
In reply to#62038
On Mon, Dec 16, 2013 at 5:17 AM, Michael Herrmann
<michael.herrmann@heliumhq.com> wrote:
> Hi everyone,
>
> I'm working for a startup called BugFree Software and would like to announce that today we're launching our second product!
>
> Helium is a library that wraps around Selenium to simplify web automation. It does away with many of the technicalities involved with web scripting. For example: Here is a Selenium script. Can you guess what it does?
>
>     >>> ff = Firefox()
>     ...
>     >>> text_area = ff.find_element_by_id("u_0_1q")
>     >>> text_area.send_keys("Hello World!")
>     >>> button = ff.find_element_by_class_name("_42g-")
>     >>> button.click()
>
> Here is the same script rewritten using Helium:
>
>     >>> start_firefox()
>     ...
>     >>> write("Hello World!", into="Update Status")
>     >>> click("Post")
>
> Can you now guess what it does? That's right; It updates your Facebook status.
>
> In an extended comparison that we were invited to write for the December issue of Professional Tester (professionaltester.com), we found that an example script automating Gmail took 66% fewer lines of code and 75% less effort using Helium than with Selenium alone.
>
> You can find more information and download Helium from http://heliumhq.com. Any feedback would be highly appreciated.
>
> Hoping to hear your thoughts and comments,

Is this open source?

[toc] | [prev] | [next] | [standalone]


#62059

FromMichael Herrmann <michael.herrmann@heliumhq.com>
Date2013-12-16 05:18 -0800
Message-ID<991a675c-90c5-41a8-a7f7-945259024248@googlegroups.com>
In reply to#62045
On Monday, December 16, 2013 12:40:56 PM UTC+1, Larry....@gmail.com wrote:
...
> Is this open source?

No. We quit our daytime jobs to work on this project and need the income to sustain our development...

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web