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
| { | |
| "//javascript/atoms:atoms-chrome" : { | |
| "buck.type" : "java_test" | |
| } | |
| } | |
| go aborted! | |
| JSON::ParserError: A JSON text must at least contain two octets! | |
| json/ext/Parser.java:175:in `initialize' | |
| json/ext/Parser.java:151:in `new' |
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
| Actions action = new Actions(webdriver); | |
| WebElement we = webdriver.findElement(By.xpath("XXX")); | |
| action.moveToElement(we).moveToElement(webdriver.findElement(By.xpath("XXX"))).click().build().perform(); |
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
| { | |
| "//javascript/atoms:atoms-chrome" : { | |
| "buck.type" : "java_test" | |
| } | |
| } | |
| go aborted! | |
| JSON::ParserError: A JSON text must at least contain two octets! | |
| json/ext/Parser.java:175:in `initialize' | |
| json/ext/Parser.java:151:in `new' |
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
| Buck.buck_cmd('query', [short, '--output-attributes', 'buck.type']) do |output| | |
| puts "\n\nDEBUG!\n" | |
| puts output | |
| puts "\nend of debug\n\n" | |
| hash = JSON.parse(output) |
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
| rescue in block in connect': Failed to open TCP connection to 127.0.0.1:9515 (Connection refused - connect(2) for "127.0.0.1" port 9515) (Errno::ECONNREFUSED) |
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 time | |
| from selenium import webdriver | |
| user = "<mailto:abc@gmail.com|abc@gmail.com>" | |
| pwd = "abc" | |
| driverpath="C:/cromedriver/chromedriver.exe" | |
| driver = webdriver.Chrome(driverpath) | |
| driver.get("<https://www.domain.com>") | |
| print("URL Found") | |
| variable = "<https://www.domain.com/user>" |
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 time | |
| from selenium import webdriver | |
| user = "<mailto:abc@gmail.com|abc@gmail.com>" | |
| pwd = "abc" | |
| driverpath="C:/cromedriver/chromedriver.exe" | |
| driver = webdriver.Chrome(driverpath) | |
| driver.get("<https://www.domain.com>") | |
| print("URL Found") | |
| variable = "<https://www.domain.com/user>" |
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
| 09:25:42.331 WARN - Capability {browserstack.local=true, browserstack.localIdentifier=zalenium, acceptSslCerts=true, browserstack.video=true, se:CONFIG_UUID=9bd3cbc7-5f1b-4f94-80e3-a6ab88b10b9b, os_version=7.0, javascriptEnabled=true, real_mobile=true, zal:name=pytest android, device=Samsung Galaxy S8} does no contain browserName key. |
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
| Selenium::WebDriver::Error::UnknownError: com.google.common.util.concurrent.SimpleTimeLimiter.create(Ljava/util/concurrent/ExecutorService;)Lcom/google/common/util/concurrent/SimpleTimeLimiter; |
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
| Capybara.register_driver :selenium do |app| | |
| Capybara::Selenium::Driver.new( | |
| app, | |
| browser: :remote, | |
| url: ENV['hub_url'], | |
| desired_capabilities: capabilities, | |
| http_client: remote_driver_browser_timeout, | |
| ) | |
| end |