Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 3

Autoplayer for Castle Age game on Facebook.

4.5
   
  0 reviews  |  6 users  |  877,523 lines of code  |  11 current contributors  |  Analyzed 5 days ago
 
 

Chrome and Firefox Edition of the Castle Age Uber Gifter & Auto Alchemy for Castle Age game on Facebook.

5.0
 
  0 reviews  |  2 users  |  792 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

RickrollDB is a social voting web app written in Ruby using the Merb 0.5 framework. Users are invited to submit and vote on URLs which are then transformed into an filter list compatible with AdBlockPlus Built specifically to power http://rickrolldb.com, which documents and blacklists “Never ... [More] Gonna Give You Up” videos, but it would be quite simple to adapt to any sort of social voting use. [Less]

0
 
  0 reviews  |  1 user  |  5,522 lines of code  |  0 current contributors  |  Analyzed about 2 years ago
 
 

TwitKit is a Twitter client in the form of a sidebar for Firefox. It supports many different themes, URL shortening, tweet favoriting, hashtags, and so much more.

0
 
  0 reviews  |  1 user  |  4,635 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 
Compare

Tellurium Automated Testing Framework Tellurium Automated Testing FrameworkLatest UpdateIntroductionTellurium SubprojectsHow to use Tellurium ?Tellurium Maven RepositoryVideos and PresentationsTellurium SupportAcknowledgmentsNews Latest UpdateTelluriumSource.org is up and running Run Tellurium ... [More] Integration Tests with Maven Cargo Plugin Tellurium 0.7.0 RC1 is Available Now Santa: The Tellurium UI Module Group Locating Algorithm How to create your own Tellurium testing project with IntelliJ 9.0 Community Edition What's New in Tellurium 0.7.0 IntroductionThe Tellurium Automated Testing Framework (Tellurium) is a UI module-based automated testing framework for web applications. The UI module is a collection of UI elements you group together. Usually, the UI module represents a composite UI object in the format of nested basic UI elements. For example, the Google search UI module can be expressed as follows, ui.Container(uid: "GoogleSearchModule", clocator: [tag: "td"], group: "true"){ InputBox(uid: "Input", clocator: [title: "Google Search"]) SubmitButton(uid: "Search", clocator: [name: "btnG", value: "Google Search"]) SubmitButton(uid: "ImFeelingLucky", clocator: [value: "I'm Feeling Lucky"]) }The UI module makes it possible to build UI elements' locators at run time. The framework does Object to Locator Mapping (OLM) automatically at run time so that you can define UI objects simply by their attributes, i.e., Composite Locators denoted by the "clocator". Furthermore, Tellurium uses the Group Locating Concept (GLC) to exploit information inside a collection of UI components to help finding their locators and the GLC is denoted by the "group" attribute in the above UI module. The Tellurium framework defines a new Domain Specific Language (DSL) for web testing. Still take the above Google search module as an example, you can use the following DSLs to do a Google search, type "GoogleSearchModule.Input", "Tellurium test" click "GoogleSearchModule.Search" waitForPageToLoad 30000One very powerful feature of Tellurium is that you can use UI templates to represent many identical UI elements or dynamic size of different UI elements at runtime, which are extremely useful to test dynamic web such as a data grid. One typical data grid example is as follows, ui.Table(uid: "table", clocator: [:]){ InputBox(uid: "row: 1, column: 1", clocator: [:]) Selector(uid: "row: *, column: 2", clocator: [:]) UrlLink(uid: "row: 3, column: *", clocator: [:]) TextBox(uid: "all", clocator: [:]) } Data Driven Testing is another important feature of Tellurium. You can define data format in an expressive way. In you data file, you can specify which test you want to run, the input parameters, and expected results. Tellurium automatically binds the input data to variables defined in your test script and run the tests you specified in the input file. The test results will be recorded by a test listener and output in different formats, for example, an XML file. Tellurium UI Model Plugin (TrUMP) is a Firefox plugin to automatically create UI modules for users. In addition, Tellurium provides you the capability to composite UI objects into a Tellurium widget object. You can pack Tellurium widgets as a jar file and then use a Tellurium widget just like a single tellurium UI object once you include the jar file. As a result, Tellurium is robust, expressive, flexible, and reusable. In summary, the main features of Tellurium include: Abstract UI objects to encapsulate web UI elements UI module for structured test code and re-usability DSL for UI definition, actions, and testing Composite Locator to use a set of attributes to describe a UI element Group locating to exploit information inside a collection of UI components Dynamically generate runtime locators to localize changes UI templates for dynamic web content XPath support jQuery selector support to improve test speed in IE Locator caching to improve speed Javascript event support Use Tellurium Firefox plugin, Trump, to automatically generate UI modules Dojo and ExtJS widget extensions Data driven test support Selenium Grid support JUnit and TestNG support Ant and Maven support The Tellurium Core is written in Groovy and Java. Tellurium Engine and Trump are implemented using JavaScript and jQuery. The test cases can be written in Java, Groovy, or pure DSL. You do not really need to know Groovy before you use it because the UI module definition and actions on UIs are written in DSLs and the rest could be written in Java syntax. Detailed User Guide, Frequent Asked Questions, and illustrative examples are provided. We expect and welcome your contributions. For a quick start, please read Ten Minutes To Tellurium, Ten Things You Should Know About Tellurium, and Top Ten Cool Features in Tellurium. Tellurium SubprojectsTellurium subprojects include Core, Reference projects, Widget extensions, TrUMP, and Engine projects as shown in the following diagram, Tellurium Engine: Based on Selenium Core with UI module, jQuery selector, command bundle, and exception hierarchy support. Tellurium Core: UI module, APIs, DSL, Object to Runtime Locator mapping, and test support. Tellurium Extensions: Dojo Javascript widgets and ExtJS Javascript widgets. Tellurium UI Module Plugin (TrUMP): A Firefox plugin to automatically generate the UI module after users select the UI elements from the web under testing. Tellurium Maven Archetypes: Maven archetypes to generate skeleton Tellurium JUnit and Tellurium TestNG projects using one Maven command. Tellurium Reference Projects: Use Tellurium project site as examples to illustrate how to use different features in Tellurium and how to create Tellurium test cases. How to use Tellurium ?There are three ways, i.e., use the reference project as a base, use Tellurium Maven archetype, or manually create Tellurium project using tellurium jar and Tellurium configuration file. Alternatively, you could create your own Tellurium Maven project manually using the sample POM file. Tellurium Maven RepositoryTellurium supports Maven 2 and here is the guide on how to use Maven for Tellurium. Tellurium snapshots can be found at our Maven snapshot repository and the releases are at our Maven release repository. The customized Selenium server and some other dependencies are at our Maven third party repository. Tellurium provides two Maven archetypes, tellurium-junit-archetype and tellurium-testng-archetype for Tellurium JUnit and TestNG project, respectively. You can use one Maven command to create a new Tellurium test project. Tellurium 0.7.0 core snapshots are at http://maven.kungfuters.org/content/repositories/snapshots/org/telluriumsource/tellurium-core/0.7.0-SNAPSHOT/ Custom Selenium Server 1.0.1-te2 snapshots with Tellurium Engine are at http://maven.kungfuters.org/content/repositories/snapshots/org/seleniumhq/selenium/server/selenium-server/1.0.1-te2-SNAPSHOT/ Trump 0.2.0 snapshots are at http://maven.kungfuters.org/content/repositories/snapshots/org/telluriumsource/trump/0.2.0-SNAPSHOT/ Videos and PresentationsTellurium UI Module Visual Demo Tellurium at Rich Web Experience 2009 by Jian Fang and Vivek Mongolu Tellurium 0.6.0 User Guide Tellurium video tutorial by Vivek Mongolu Tellurium Screencast Part I: Tellurium project and Trump IDE Tellurium Screencast Part II: Create Tellurium Test cases Tellurium - A New Approach For Web Testing 10 Minutes to Tellurium Tellurium SupportIf you have any questions or problems with Tellurium, please join our Tellurium user group and then post them there. You will get the response very shortly. AcknowledgmentsSpecial thanks to JetBrains for providing us the Open Source License for IntelliJ IDEA. Special thanks to ej-technologies for providing us the Open Source License for JProfiler. Special Thanks to AquaFold for providing us the Open Source Software Developer License of Aqua Data Studio. News 2010-03-10, TelluriumSource.org is up and running 2010-03-04, Run Tellurium Integration Tests with Maven Cargo Plugin 2010-02-15, Disclose UI Module APIs in Tellurium 0.7.0. 2010-02-11, Tellurium 0.7.0 RC1 is Available Now 2010-02-10, Santa: The Tellurium UI Module Group Locating Algorithm 2010-02-08, Tellurium UI Module Visual Effect 2010-01-28, Tellurium is on Vimeo now. 2010-01-22, Added new wiki guide How to create your own Tellurium testing project with IntelliJ 9.0 Community Edition. 2010-01-15, What's New in Tellurium 0.7.0 is updated to track changes in 0.7.0. 2009-12-02, Tellurium was presented at Rich Web Experience 2009. 2009-11-22, Welcome Harihara Vinayakaram to our team. 2009-11-20, IRC Channel #tellurium is Available Now. 2009-10-10, Tellurium Facebook Group has been created and you are welcome to join. 2009-09-20, Special thanks to Davlyn Jones, the Tellurium user guide 0.6.0 is officially released now. 2009-09-18, Special thanks to Jared Rawlinson, Tellurium has a new project logo now. 2009-09-09, Please poll where did you find Tellurium. 2009-08-18, Welcome Kamal Ahmed to our team. 2009-08-15, Welcome Mahendra Kariya and Ajay Ravichandran to our team. 2009-07-27, The first draft of Tellurium User Guide is available now. You can download the pdf file from here. 2009-07-15, Welcome Kevin Zhang to our team. 2009-07-09, Welcome Davlyn Jones and Ramesh Ramamurthy to our team. 2009-06-26, Tellurium was presented at CodeStock 2009. 2009-06-26, Tellurium is on Twitter and Reddit now. 2009-06-24, Tellurium celebrates its first anniversary. Please read the article, Tellurium First Anniversary: Retrospect and Prospect. 2009-06-23, Added a video demo Tellurium beginner tutorial. 2009-06-21, Welcome Jeff Xiong to our Team. 2009-06-18, Tellurium 0.6.0 is released, please see the announcement. 2009-06-12, Tellurium creator, Dr. Jian Fang, was interviewed by InfoQ China. 2009-06-10, Tellurium Chinese Document project is created. 2009-05-13, Tellurium Core and reference projects 0.6.0 RC1 are out, Please see the announcement. 2009-05-10, Added Tellurium 0.6.0 feature introduction: Whats New in Tellurium 0.6.0 2009-04-28, Tellurium provides Selenium Grid support 2009-04-23, Tellurium Automated Testing Framework LinkedIn Group has been created and you are welcome to join. 2009-04-14, Tellurium starts to support jQuery selector. 2009-03-15, tutorial 10 Minutes to Tellurium is created and it includes a wiki page, presentation slides, and a screencast video. 2009-03-13, two Tellurium Maven archetypes are available, i.e., tellurium-junit-archetype and tellurium-testng-archetype for Tellurium JUnit and TestNG project, respectively. 2009-03-04, Tellurium UI Module Firefox Plugin (TrUMP) 0.1.0 is released 2009-02-18, Tellurium UI Module Firefox Plugin (TrUMP) 0.1.0 Release Candidate is available 2009-02-17, Tellurium Demo Videos are uploaded, you can use VLC media player to watch them 2009-01-29, Tellurium UI Module Firefox Plugin (TrUMP) 0.1.0 preview version is available 2008-12-03, Tellurium core 0.5.0 and reference projects are released 2008-12-02, Welcome Mikhail Koryak to our team. 2008-11-15, Tellurium 0.5.0 Release Candidate RC01 is out 2008-08-22, Welcome Haroon Rasheed to our team. 2008-08-13, Tellurium 0.4.0 is released and this release includes a lot of new features and enhancements such as data driven testing, framework configuration, and JUnit 4 support. 2008-07-29, The AOST framework is officially renamed to the Tellurium Automated Testing framework (Tellurium). 2008-07-29, Welcome Matt Senter to our team. 2008-07-18, Welcome Vivek Mongolu to our team. 2008-07-18, AOST user group is created. Please join and post your questions, comments, and suggestions there. 2008-07-12, AOST 0.3.0 is out and it comes with significant feature enhancement including Composite Locator, Group Locating Concept, and Multiple UI Modules in one DslContext. 2008-07-02, UI Object ID is refactored to support nested UI objects. 2008-06-25, The AOST framework became public with version 0.2.0. 2008-01-01, the AOST framework second prototype was created. 2007-06-01, the AOST framework first prototype was created. We are looking for Javascript and jQuery developers to join our team to work on the Trump and the Engine sub-projects. [Less]

5.0
 
  0 reviews  |  1 user  |  207,997 lines of code  |  0 current contributors  |  Analyzed about 22 hours ago
 
 

AWPlus is a system that turns the Astrowars playing experience beyond what the own game offers. Organizing the information already existing in a concise way and turning the access of the game features something merely intuitive. Using this Firefox extension it was possible to create a dropdown ... [More] menu to speed up the processes during the game, quicklinks, easy ways to spend your production points and much more... See all features Install this tool right now and turn your Astrowars much more fast and fun. awPlus is now PUBLIC! thanks!Check all changes on CHANGELOG Help awPlus stay aliveTo support this project make donations [Less]

0
 
  0 reviews  |  0 users  |  11,354 lines of code  |  0 current contributors  |  Analyzed 1 day ago
 
 

This project provides some hacks of Yahoo! Fantasy Basketball. You should have Firefox + Greasemonkey + Stylish to use these tools. If you have any question, please visit the discussion group - YFNBA Google Group. Go "Downloads" to install the script and enjoy it! 本計畫提供 ... [More] Yahoo! Fantasy Basketball 的一些修改工具,在使用之前,您應該要有 Firefox + Greasemonkey + Stylish。 任何問題或建議均歡迎至 YFNBA Google Group 反應。 現在立刻到 Downloads 裡安裝使用吧! [Less]

0
 
  0 reviews  |  0 users  |  48 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

secretAgent simply adds the browser, engine and the OS to the html tag. With nearly* no set up at all, you can start using it right after you put it in your jQuery document.ready function. Set var debug to true a javascript alert of the rendering engine, browser, and OS. *Of course, you need to add the script to your document.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 1 day ago
 
 

Notice: If you had installed this script before, please REMOVE and REINSTALL it again. Motivation Viewing cover and preview images of Japanese adult video sites(AVsites) via mouse clicking is always pissing me off. I write a simple but useful Greasemonkey script, named Japanese AVsite Expander ... [More] , to preload them automatically based on jQuery. Supported Japanese AVsites PREMIUM IDEAPOCKET:トップページ MOODYZ S1/エスワン SODクリエイト アリスJAPAN E-BODY(イーボディ) 美 KUKI 亂丸(らんまる) イエロー/YeLLOW h.m.p online WaapTV ワープ K.M.Produce 嵐を呼ぶスーパーガール Prestige プレステージ 百花美人 HATSUDORI:トップ BeFree ROOKIE トップページ アンナと花子 熟女 専門 AVメーカー 『マドンナ』 溜池ゴロ DAS ダスッ! アタッカーズ (Attackers) 胸キュン喫茶 しのだ アニマリージョ(ANIMALIJO) EROS HEARTS すっぴん consent (コンセント) レッド 素人・フェチメーカー KARMA カルマ CROSS MVGトップ はじめ企畫 セクシア/SexiA kawaii*【カワイイ*】 BEAUTY AV トップページ kira☆kira【キラ☆キラ】 カッコイイ!(kakkoii!) 無垢 Kichu (キッチュ) OPPAI(おっぱい) 妄想族 Jewelry Box(ジュエリーボックス) Emmanuelle【エマニエル】 五右衛門 AVGP2009 MAXING マキシング (New) MAX-A (New) Installation To use this script, you have to install Firefox and Greasemonkey first. Users for other browsers may consider Greasemonkey compatibility and equivalents for other browsers for more information. However, I'm not quite sure this script will also work fine on those browsers. If you don't want to install Greasemonkey, you may download and try JpAVsiteExpander-Dev20090422.xpi alternatively. :: Disclaimer :: The author shall not be liable for any lost caused by this script. The users should take the responsibility and risk for judging whether the script obtained from this site is suitable for use or not. This script shall not be liable for any accidents of the calculator, including disoperation, lost of data, reset and such, due to the usage infomation obtained from this site. All the information and contents, including this disclaimer, are subject to change without notice. This disclaimer is based on English. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 1 day ago
 
 

In order to increase usability of douban.com Unofficial plugin... User Jquery as js library

0
 
  0 reviews  |  0 users  |  27 lines of code  |  0 current contributors  |  Analyzed about 2 hours ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.