diff options
| author | Sadeep Madurange <sadeep@asciimx.com> | 2025-11-07 21:07:12 +0800 |
|---|---|---|
| committer | Sadeep Madurange <sadeep@asciimx.com> | 2025-11-09 08:32:51 +0800 |
| commit | 25615d16f93ffafcb19d0940cfab75e1f374b3b9 (patch) | |
| tree | 44c015e631cbd0fbeb5ccb6e821874ec4d299d02 /_site/projects/bumblebee | |
| parent | 1b4674f15331982ac83dbfa646985f62dc3f2e33 (diff) | |
| download | www-25615d16f93ffafcb19d0940cfab75e1f374b3b9.tar.gz | |
Improve writing.
Diffstat (limited to '_site/projects/bumblebee')
| -rw-r--r-- | _site/projects/bumblebee/index.html | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/_site/projects/bumblebee/index.html b/_site/projects/bumblebee/index.html index c2da039..23f1a66 100644 --- a/_site/projects/bumblebee/index.html +++ b/_site/projects/bumblebee/index.html @@ -43,23 +43,24 @@ <h2 class="center" id="title">BUMBLEBEE: BROWSER AUTOMATION</h2> <h6 class="center">02 APRIL 2025</h5> <br> - <div class="twocol justify"><p>Bumblebee is a web browser that turns browser sessions into C# scripts. Its -objective is to eliminate the need for authoring scripts for testing, web -scraping, and other browser automation tasks.</p> + <div class="twocol justify"><p>Bumblebee is a web browser that converts browser sessions into C# scripts for +playback. It eliminates the need for authoring browser automation scripts.</p> <video style="max-width:100%; margin-bottom: 10px" controls="" poster="thumb.png"> <source src="bee.mp4" type="video/mp4" /> </video> -<p>Bumblebee is a Windows Forms application written in C#. The rendering of web -content is handled by the embedded Microsoft Edge browser (via WebView). The -text editor on the right is <a src="https://github.com/desjarlais/Scintilla.NET" class="external" target="_blank" rel="noopener noreferrer">Scintilla.NET</a>. It -enables users to override the script at any point during the session. There are -application settings that let users debounce events, ignore hidden elements -and scripts, and more.</p> +<p>Bumblebee is a Windows Forms application written in C#. Web content is rendered +by the embedded Microsoft Edge browser (via WebView). The text editor on the +right is <a src="https://github.com/desjarlais/Scintilla.NET" class="external" target="_blank" rel="noopener noreferrer">Scintilla.NET</a>. Users can +override the generated script at any point during the session. The users can +configure Bumblebee to debounce events, ignore hidden elements, etc.</p> -<p>Unfortunately, I can’t share the source code for Bumblebee. I developed it for -an employer. Hence, the software is proprietary.</p> +<p>Bumblebee works by injecting a custom JavaScript program that tracks user +interactions. The tracker intercepts and sends them to the Bumblebee backend as +events for analysis. In addition to the front-end events, Bumblebee also +intercepts events internal to the web browser, which it then interprets to +generate C# code for the Selenium WebDriver in real time.</p> </div> <p class="post-author right">by Wickramage Don Sadeep Madurange</p> |
