This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.net.URL; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Set; | |
import java.io.File; | |
import java.net.MalformedURLException; | |
import io.appium.java_client.AppiumDriver; | |
import io.appium.java_client.MobileBy; | |
import io.appium.java_client.MobileElement; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.net.URL; | |
import org.openqa.selenium.remote.DesiredCapabilities; | |
import io.appium.java_client.AppiumDriver; | |
import io.appium.java_client.android.AndroidDriver; | |
public class Debug_Android_WebSiteOpen { | |
public static void main(String[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var webdriver = require('selenium-webdriver'); | |
var chrome = require("selenium-webdriver/chrome"); | |
var fs = require('fs'); | |
let file_path = '/Users/test/Downloads/Page Ruler.crx'; | |
let buff = new Buffer.from(fs.readFileSync(file_path)); | |
let base64data = buff.toString('base64'); | |
var capabilities = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COMMAND EXECUTED=> echo "= = = = = = TESTCAFE :: LOCAL :: START >> " && timestamp && testcafe "browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra" /Users/chimi/stack/lang/testcafe/new_1/simple_fix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------------------------- | |
= = = = = = = = = = = = = = = = EXECUTION 1 = = = = = = = = = = = = = = = = | |
------------------------------------------------------------------------------- | |
COMMAND EXECUTED=> echo "= = = = = = TESTCAFE :: LOCAL :: START >> " && timestamp && testcafe "browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra","browserstack:[email protected]:OS X High Sierra" /Users/test/stack/lang/testcafe/new_1/simple_fixture.testcafe.js && echo "= = = = = = TESTCAFE :: LOCAL :: END >> " && timestamp | |
COMMAND OUTPUT=> | |
= = = = = = TESTCAFE :: LOCAL :: START >> | |
1563381908 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------------------------- | |
= = = = = = = = = = = = = = = = EXECUTION 1 = = = = = = = = = = = = = = = = | |
------------------------------------------------------------------------------- | |
COMMAND EXECUTED=> echo "= = = = = = TESTCAFE :: LOCAL :: START >> " && timestamp && testcafe chrome,chrome,chrome,chrome,chrome /Users/test/stack/lang/testcafe/new_1/simple_fixture.testcafe.js && echo "= = = = = = TESTCAFE :: LOCAL :: END >> " && timestamp | |
OUTPUT=> | |
= = = = = = TESTCAFE :: LOCAL :: START >> | |
1563381909 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Selector } from 'testcafe'; | |
console.log("= = = = = = STARTING TEST :: " + Date.now()); | |
fixture `Simple_Fixture` | |
.page `https://the-internet.herokuapp.com/login`; | |
test('Test_Login', async t => { | |
console.log("= = = = = = TEST :: Test_Login :: START :: " + Date.now()); | |
await t |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------------------------- | |
= = = = = = = = = = = = = = = = EXECUTION 1 = = = = = = = = = = = = = = = = | |
------------------------------------------------------------------------------- | |
COMMAND EXECUTED=> echo "= = = = = = TESTCAFE :: LOCAL :: START >> " && timestamp && testcafe "browserstack:[email protected]:OS X High Sierra" /Users/test/stack/lang/testcafe/new_1/simple_fixture.testcafe.js && echo "= = = = = = TESTCAFE :: LOCAL :: END >> " && timestamp | |
COMMAND OUTPUT=> | |
= = = = = = TESTCAFE :: LOCAL :: START >> | |
1563378495 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------------------------- | |
= = = = = = = = = = = = = = = = EXECUTION 1 = = = = = = = = = = = = = = = = | |
------------------------------------------------------------------------------- | |
COMMAND EXECUTED=> echo "= = = = = = TESTCAFE :: LOCAL :: START >> " && timestamp && testcafe chrome /Users/test/stack/lang/testcafe/new_1/simple_fixture.testcafe.js && echo "= = = = = = TESTCAFE :: LOCAL :: END >> " && timestamp | |
OUTPUT=> | |
= = = = = = TESTCAFE :: LOCAL :: START >> | |
1563378494 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'selenium-webdriver' | |
caps = Selenium::WebDriver::Remote::Capabilities.chrome( | |
"browserstack.user" => "<BROWSERSTACK_USERNAME>", | |
"browserstack.key" => "<BROWSERSTACK_ACCESS_KEY>", | |
"browser" => "chrome", | |
"os" => "Windows", |