blob: 3e4d217f8d13ed5ae8010f2afafc8ede3156a77e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bumblebee: turn browser sessions to code</title>
<head>
<meta charset="utf-8">
<title>Bumblebee: turn browser sessions to code</title>
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="stylesheet" href="/assets/css/normalize.css">
<link rel="stylesheet" href="/assets/css/skeleton.css">
</head>
</head>
<body>
<div class="container">
<ul id="navlist" class="left">
<li >
<a href="/">hme</a>
</li>
<li class="active">
<a href="/projects/">proj</a>
</li>
<li >
<a href="/about/">abt</a>
</li>
<li><a href="/rss.xml">rss</a></li>
</ul>
</div>
<main>
<div class="container">
<h2 class="brand center" id="title">BUMBLEBEE: TURN BROWSER SESSIONS TO CODE</h2>
<h6 class="center">02 APRIL 2025</h5>
<br>
<div class="threecol 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>
<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>Unfortunately, I can’t share the source code for Bumblebee. I developed it for
an employer. Hence, the software is proprietary.</p>
</div>
<p class="post-author right italics">by W. D. Sadeep Madurange</p>
</div>
</main>
</body>
</html>
|