This file contains 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
~/selenium $ ./appium/beta/appium -a "<removed-from-log>" --nodeconfig ~/selenium/ios/iphone3.json --session-override --allow-cors --webkit-debug-proxy-port 5662 -p 5562 --relaxed-security | |
[Appium] Welcome to Appium v1.16.0-beta.1 | |
[Appium] Non-default server args: | |
[Appium] allowCors: true | |
[Appium] address: <removed-from-log> | |
[Appium] port: 5562 | |
[Appium] sessionOverride: true | |
[Appium] nodeconfig: <removed-from-log>/ios/iphone3.json | |
[Appium] webkitDebugProxyPort: 5662 | |
[Appium] relaxedSecurityEnabled: true |
This file contains 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
$ node --version | |
v10.16.3 | |
$ appium --version | |
1.15.1 | |
$ # libimobiledevice | |
$ # installed with --HEAD, latest commit was "60823f9idevice: properly handle partial SSL writes" | |
$ ios_webkit_debug_proxy --version |
This file contains 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
[Appium] Welcome to Appium v1.13.0-beta.3 | |
[Appium] Non-default server args: | |
[Appium] allowCors: true | |
[Appium] address: <appium_server_url> | |
[Appium] port: 5570 | |
[Appium] sessionOverride: true | |
[Appium] nodeconfig: ipad1.json | |
[Appium] webkitDebugProxyPort: 5670 | |
[Appium] You have enabled CORS requests from any host. Be careful not to visit sites which could maliciously try to start Appium sessions on your machine | |
[debug] [Appium] Starting auto register thread for grid. Will try to register every 5000 ms. |
This file contains 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
Show hidden characters
[ | |
{ "keys": ["shift+super+minus"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["super+d"], "command": "duplicate_line" }, | |
{ "keys": ["shift+super+r"], "command": "find_all_under" }, | |
{ "keys": ["ctrl+o"], "command": "prompt_open_file" }, | |
{ | |
"keys": ["super+alt+l"], | |
"command": "jsbeautify", | |
"context": [{ | |
"key": "selector", |
This file contains 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
{"lastUpload":"2021-02-11T11:32:47.366Z","extensionVersion":"v3.4.3"} |
Currently considering https://github.com/webdriverio/webdrivercss
Core Goals:
- Can test in up-to-date versions of all major browsers
- Can test on up-to-date versions of all major OSes
- Can test in IE9 (because Bootstrap v4 will support IE9+)
- Don't want to have to setup/maintain our own cluster of VMs running all the necessary OSes (and all the versions of Windows)
- Workflow for management of reference/baseline/norm screenshots
This file contains 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 myConfObj = { | |
iframeMouseOver : false | |
} | |
window.addEventListener('blur',function(){ | |
if(myConfObj.iframeMouseOver){ | |
console.log('Wow! Iframe Click!'); | |
} | |
}); | |
document.getElementById('YOUR_CONTAINER_ID').addEventListener('mouseover',function(){ |