I hereby claim:
- I am dominikdary on github.
- I am dominikdary (https://keybase.io/dominikdary) on keybase.
- I have a public key whose fingerprint is B570 0B33 42CE C2BE D82A 624D EB15 D56C 8A5E EB31
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# This script runs a given command over a range of Git revisions. Note that it | |
# will check past revisions out! Exercise caution if there are important | |
# untracked files in your working tree. | |
# | |
# This came from Gary Bernhardt's dotfiles: | |
# https://github.com/garybernhardt/dotfiles | |
# | |
# Example usage: |
#!/usr/bin/perl | |
# | |
# Pre-commit hook for running checkstyle on changed Java sources | |
# | |
# To use this you need: | |
# 1. checkstyle's jar file somewhere | |
# 2. a checkstyle XML check file somewhere | |
# 3. To configure git: | |
# * git config --add checkstyle.jar <location of jar> | |
# * git config --add checkstyle.checkfile <location of checkfile> |
I hereby claim:
To claim this, I am signing this object:
/* | |
* Copyright 2014 eBay Software Foundation and selendroid committers. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | |
* in compliance with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software distributed under the License | |
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
[INFO] | |
[INFO] --- maven-surefire-plugin:2.14-SNAPSHOT:test (tck-tests) @ arquillian-jbossas-remote-6 --- | |
[INFO] Surefire report directory: /home/aslak/dev/source/testing/arquillian-container-jbossas/jbossas-remote-6/target/surefire-reports | |
------------------------------------------------------- | |
T E S T S | |
------------------------------------------------------- | |
Running org.arquillian.tck.container.cdi_1_0.CDIBeanLookupWarTestCase | |
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.866 sec | |
Running org.arquillian.tck.container.servlet_2_5.MultipleWebContextLookupMultiWarTestCase |
This document describes how to setup a repl for selendroid based on Python. It uses the Selenium Python bindings.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<hierarchy rotation="0"> | |
<node index="0" text="" class="android.widget.FrameLayout" package="io.selendroid.testapp" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,0][480,800]"> | |
<node index="0" text="" class="android.widget.LinearLayout" package="io.selendroid.testapp" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,0][480,800]"> | |
<node index="0" text="" class="android.widget.FrameLayout" package="io.selendroid.testapp" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,38][480,76]"> | |
<node |
{ | |
"id": "[DecorView]", | |
"data": "[DecorView]", | |
"children": [{ | |
"id": "[LinearLayout]", | |
"data": "[LinearLayout]", | |
"children": [{ | |
"id": "[ViewStub]-action_mode_bar...", | |
"data": "[ViewStub]-action_mode_bar...", | |
"attr": { |
package com.ebay.mobile.tests; | |
import org.testng.annotations.AfterClass; | |
import org.testng.annotations.BeforeClass; | |
import org.testng.annotations.Test; | |
public class Tests { | |
@BeforeClass | |
public void setup() { | |
System.out.println("setup"); |
curl -d '{"desiredCapabilities":{"browserName":"android","emulator":True,"androidTarget":"ANDROID16"}}' http://localhost:4444/wd/hub/session |