Skip to content

Commit

Permalink
Adding Selenium builder first cut
Browse files Browse the repository at this point in the history
  • Loading branch information
admc committed Feb 18, 2011
0 parents commit 396c43c
Show file tree
Hide file tree
Showing 210 changed files with 46,689 additions and 0 deletions.
Binary file added docs/images/download_now.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/element_highlighter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/save.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/save_as.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/sb_load_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/verifyTextPresent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/waitForCondition.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
159 changes: 159 additions & 0 deletions docs/index.html

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions seleniumbuilder/chrome.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
content seleniumbuilder chrome/content/
content seleniumbuilder chrome/content/ contentaccessible=yes
overlay chrome://browser/content/browser.xul chrome://seleniumbuilder/content/browser.xul

locale seleniumbuilder en-US locale/en-US/

skin seleniumbuilder classic/1.0 skin/
style chrome://global/content/customizeToolbar.xul chrome://seleniumbuilder/skin/skin.css
42 changes: 42 additions & 0 deletions seleniumbuilder/chrome/content/browser.xul
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://seleniumbuilder/skin/skin.css" type="text/css"?>
<!DOCTYPE seleniumbuilder SYSTEM "chrome://seleniumbuilder/locale/translations.dtd">
<overlay id="sample" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="seleniumBuilder.js" />

<menupopup id="menu_ToolsPopup">
<menuitem
label="&runseleniumbuilder;"
key="selenium-builder-run-key"
oncommand="seleniumBuilder.boot()" />
</menupopup>

<keyset>
<key id="selenium-builder-run-key"
modifiers="accel alt"
key="B"
oncommand="seleniumBuilder.boot()" />
</keyset>

<statusbar id="status-bar">
<statusbarpanel id="selenium-builder-status-bar-icon"
class="statusbarpanel-iconic"
src="chrome://seleniumbuilder/skin/statusbar.png"
tooltiptext="&runseleniumbuilder;"
onclick="seleniumBuilder.boot(null)" />
</statusbar>

<toolbarpalette id="BrowserToolbarPalette">
<toolbarbutton id="selenium-builder-toolbar-button"
label="Selenium Builder"
image="chrome://seleniumbuilder/skin/toolbar.png"
tooltiptext="&runseleniumbuilder;"
oncommand="seleniumBuilder.boot(null)" />
</toolbarpalette>

<popup id="contentAreaContextMenu">
<menuitem id="selenium-builder-context-menu-launch"
label="&runseleniumbuilder;"
oncommand="seleniumBuilder.boot(null);" />
</popup>
</overlay>
316 changes: 316 additions & 0 deletions seleniumbuilder/chrome/content/html/body.html

Large diffs are not rendered by default.

214 changes: 214 additions & 0 deletions seleniumbuilder/chrome/content/html/css/firebug-lite.css

Large diffs are not rendered by default.

Loading

0 comments on commit 396c43c

Please sign in to comment.