All Projects → karacca → Beetle

karacca / Beetle

Licence: apache-2.0
Shake to create Bug Report on GitHub, GitLab and Azure DevOps!

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Beetle

larafeed
Laravel package for providing visual feedback via screenshots.
Stars: ✭ 42 (-6.67%)
Mutual labels:  screenshot, feedback
ngx-feedback
Angular user feedback collector library
Stars: ✭ 17 (-62.22%)
Mutual labels:  screenshot, feedback
Bugshaker Android
Shake to send a bug report!
Stars: ✭ 124 (+175.56%)
Mutual labels:  feedback, bug
Ghpr.nunit
Adapter for NUnit 3 (generate HTML report for NUnit 3)
Stars: ✭ 33 (-26.67%)
Mutual labels:  report, screenshot
Scm Backup
Makes offline backups of your cloud hosted source code repositories
Stars: ✭ 38 (-15.56%)
Mutual labels:  gitlab
Asterisk Cdr Viewer
Simple and fast viewer for asterisk CDRs / recordings
Stars: ✭ 29 (-35.56%)
Mutual labels:  report
Screeen
Observe user screen shot event in macOS.
Stars: ✭ 29 (-35.56%)
Mutual labels:  screenshot
Mac2imgur
⬆ A simple Mac app designed to make uploading images and screenshots to Imgur quick and effortless.
Stars: ✭ 914 (+1931.11%)
Mutual labels:  screenshot
Chart To Aws
Microservice to generate screenshot from a webpage and upload it to a AWS S3 Bucket.
Stars: ✭ 43 (-4.44%)
Mutual labels:  screenshot
Image Screenshot
download an image node along with its css properties
Stars: ✭ 40 (-11.11%)
Mutual labels:  screenshot
Fileshare
Debian/Ubuntu applet for screenshots and images sharing using popular online services
Stars: ✭ 35 (-22.22%)
Mutual labels:  screenshot
Svg Screenshot
リンクもまるごとキャプチャしてSVGで出力するChromeスクリーンショット拡張機能
Stars: ✭ 31 (-31.11%)
Mutual labels:  screenshot
Gowitness
🔍 gowitness - a golang, web screenshot utility using Chrome Headless
Stars: ✭ 996 (+2113.33%)
Mutual labels:  screenshot
Headless
Create a virtual X screen from Ruby, record videos and take screenshots.
Stars: ✭ 951 (+2013.33%)
Mutual labels:  screenshot
Openvasreporting
OpenVAS Reporting: Convert OpenVAS XML report files to reports
Stars: ✭ 42 (-6.67%)
Mutual labels:  report
Pybrowserstack Screenshots
api wrapper and python client for Browserstack Screenshots, including phantomCSS support
Stars: ✭ 27 (-40%)
Mutual labels:  screenshot
Linux Tutorial
《Java 程序员眼中的 Linux》
Stars: ✭ 7,757 (+17137.78%)
Mutual labels:  gitlab
Cbt Tunnel Nodejs
Node.js module for Local Connections to crossbrowsertesting.com
Stars: ✭ 39 (-13.33%)
Mutual labels:  screenshot
Cimonitor
Displays CI statuses on a dashboard and triggers fun modules representing the status!
Stars: ✭ 34 (-24.44%)
Mutual labels:  gitlab
Jquery.tabslideout.js
jQuery plugin to create a side/top/bottom tab that slides out to show a feedback form, contact form, notepad etc.
Stars: ✭ 35 (-22.22%)
Mutual labels:  feedback

Shake to create Bug Report on GitHub, GitLab and Azure DevOps!

API

Screenshots

Introduction

Beetle allow your QA team to easily create issues on GitHub, GitLab and Azure DevOps by shaking their device. It is initialized in Application class with agent credentials and doesn't require any additional permissions.

Features

  • Directly creates issues from the device with only one easy step
  • Adds current screenshot as Attachment. (GitLab, Azure DevOps)
  • Assign issues to related users
  • Add Labels (GitHub, GitLab)
  • Device information includes to the end of issue description automatically

Installation & Usage

1. Add it in your root build.gradle file.

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

2. Add the dependency

dependencies {
	  implementation 'com.github.karacce:Beetle:{latest-version}'
}

3. Initialize Beetle in Application file

class SampleApplication: Application() {

    override fun onCreate() {
        super.onCreate()
        
        /** Initialize with Azure DevOps **/
        Beetle.azure(this, "karacce", "Beetle", "[email protected]", "token")
        
        /** Initialize with GitHub **/
        Beetle.github(this, "karacce", "Beetle", "token")
        
        /** Initialize with GitLab **/
        Beetle.gitlab(this, 12899898, "token")
    }
}
``
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].