Skip to content

Instantly share code, notes, and snippets.

View TadeasKriz's full-sized avatar
🙃
Infinite coffee break.

Tadeas Kriz TadeasKriz

🙃
Infinite coffee break.
View GitHub Profile
{
"url" : "https://agpushmedium-arqtest.rhcloud.com/",
"variantID" : "6853aadb-5808-406a-9d59-9f8bbd831708",
"secret": "229a80a3-3704-45df-a2f8-2ff8cdb708d2",
"alias" : "detox@redhat.com"
}

High ends

CZK 15,990

Display: 1920 x 1080 [xxhdpi]

Samsung phones are more and more popular, so it’s probably a good idea to test it on Samsung’s flagship. It also runs TouchWiz UI and when S2 was released, they had their own web browser rendering implementation (not sure if this still applies). This phone has powerful CPU and GPU and lot’s of memory.

CZK 12,790

/*
* Copyright (C) 2014 Chris Banes
*
* 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
public class AndroidDronePointFilter implements DronePointFilter {
@Override
public boolean accept(DroneContext context, DronePoint<?> dronePoint) {
DronePointContext<?> dronePointContext = context.get(dronePoint);
if (dronePointContext.hasConfiguration() && dronePoint.conformsTo(WebDriver.class)) {
if (dronePointContext.isInstantiated()) {
return dronePointContext.getInstanceAs(WebDriver.class) instanceof AndroidDriver;
} else {
@protocol AGResponse <NSObject>
// Array of unmarshaled objects
@property (readonly, nonatomic) NSArray* objects;
@property (readonly, nonatomic) BOOL hasPrevious;
@property (readonly, nonatomic) BOOL hasNext;
@optional
-(void)next:(void (^)(id<AGResponse> response))success failure:(void (^)(NSError *error))failure;
-(void)previous:(void (^)(id<AGResponse> response))success failure:(void (^)(NSError *error))failure;