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
| 12.973][DEBUG]: Sending adb command: host:transport:emulator-5554|shell:am start -W -n com.android.chrome/com.google.android.apps.chrome.Main -d data:, | |
| [14.373][DEBUG]: Received adb response: Starting: Intent { dat=data:, cmp=com.android.chrome/com.google.android.apps.chrome.Main } | |
| Status: ok | |
| Activity: com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity | |
| ThisTime: 825 | |
| TotalTime: 1336 | |
| WaitTime: 1373 | |
| Complete | |
| [14.373][DEBUG]: Sending adb command: host-serial:emulator-5554:forward:tcp:12685;localabstract:chrome_devtools_remote |
This file has been truncated, but you can view the full file.
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
| e} sending message to a Handler on a dead thread | |
| at android.os.MessageQueue.enqueueMessage(MessageQueue.java:545) | |
| at android.os.Handler.enqueueMessage(Handler.java:661) | |
| at android.os.Handler.sendMessageAtTime(Handler.java:630) | |
| at android.os.Handler.sendMessageDelayed(Handler.java:600) | |
| at android.os.Handler.post(Handler.java:356) | |
| at android.os.ResultReceiver$MyResultReceiver.send(ResultReceiver.java:57) | |
| at com.android.internal.os.IResultReceiver$Stub.onTransact(IResultReceiver.java:58) | |
| at android.os.Binder.execTransact(Binder.java:674) |
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
| [info] [35m[Appium][39m Welcome to Appium v1.13.0 | |
| [info] [35m[Appium][39m Appium REST http interface listener started on 0.0.0.0:4723[info] [35m[HTTP][39m [37m-->[39m [37mGET[39m [37m/wd/hub/sessions[39m | |
| [info] [35m[HTTP][39m [90m{}[39m | |
| [debug] [35m[GENERIC][39m Calling AppiumDriver.getSessions() with args: [] | |
| [debug] [35m[GENERIC][39m Responding to client with driver.getSessions() result: [] | |
| [info] [35m[HTTP][39m [37m<-- GET /wd/hub/sessions [39m[32m200[39m [90m5 ms - 40[39m | |
| [info] [35m[HTTP][39m [90m[39m[info] [35m[HTTP][39m [37m-->[39m [37mPOST[39m [37m/wd/hub/session[39m | |
| [info] [35m[HTTP][39m [90m{"desiredCapabilities":{"app":"/Users/sripathi.pai/appium-tutorial/cordova-appium-example/platforms/android/build/outputs/apk/android-debug.apk","autoWebview":"true","autoWebviewTimeout":"20000","chromedriverExecutable":"/Users/sripathi.pai/appium-tutorial/chromedriver","deviceName":"any","ensureWebviewsHavePages":"true","platformName":"Android","platformVersion":"8.0"," |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>net.serenitybdd.demos.todos</groupId> | |
| <artifactId>todo-demo</artifactId> | |
| <version>1.0.0-SNAPSHOT</version> | |
| <name>Sample Serenity project using Cucumber and WebDriver</name> | |
| <properties> | |
| <serenity.cucumber.version>1.1.6</serenity.cucumber.version> |
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.io.IOException; | |
| import java.net.URL; | |
| import java.util.Date; | |
| import java.util.List; | |
| import java.util.logging.Level; | |
| import org.json.*; | |
| import org.openqa.selenium.*; | |
| import org.openqa.selenium.chrome.*; | |
| import org.openqa.selenium.logging.*; |
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
| rom selenium import webdriver | |
| from selenium.webdriver.common.keys import Keys | |
| from selenium.webdriver.common.desired_capabilities import DesiredCapabilities | |
| # Tell the Python bindings to use Marionette. | |
| # This will not be necessary in the future, | |
| # when Selenium will auto-detect what remote end | |
| # it is talking to. | |
| driver = webdriver.Remote( | |
| command_executor='http://127.0.0.1:4444/wd/hub', |
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
| [Child 6901] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-m64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2052 | |
| [Child 6901] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-rel-m64-00000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 2052 |
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
| from selenium import webdriver | |
| from selenium.webdriver.common.desired_capabilities import DesiredCapabilities | |
| firefox_capabilities = DesiredCapabilities.FIREFOX | |
| firefox_capabilities['marionette'] = True | |
| firefox_capabilities['binary'] = '/Applications/FirefoxDeveloperEdition.app/Contents/MacOS/firefox' | |
| driver = webdriver.Firefox(capabilities=firefox_capabilities) | |
| driver.get("http://google.com") |
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
| Traceback (most recent call last): | |
| File "test_1044.py", line 47, in <module> | |
| driver = EventFiringWebDriver(driver, DefaultWebDriverEventListener(driver)) | |
| NameError: name 'DefaultWebDriverEventListener' is not defined |