Skip to content

Instantly share code, notes, and snippets.

@ilyavf
Last active October 2, 2017 17:36
Show Gist options
  • Save ilyavf/27f2c5a8530382883a1bd227f815b4dc to your computer and use it in GitHub Desktop.
Save ilyavf/27f2c5a8530382883a1bd227f815b4dc to your computer and use it in GitHub Desktop.
Client failed to connect to the D-BUS daemon
sudo: required
language: node_js
node_js: 7.3
addons:
firefox: "51.0"
cache: yarn
before_install:
- "export DISPLAY=:99.0"
- "export DEBUG=testee:*"
- "sh -e /etc/init.d/xvfb start"
script:
- sudo sh -c "dbus-uuidgen > /etc/machine-id"
- npm run test
language: node_js
node_js: 7.3
addons:
firefox: "51.0"
cache: yarn
before_install:
- "export DISPLAY=:99.0"
- "export DEBUG=testee:*"
- "sh -e /etc/init.d/xvfb start"
{
"name": "wallet-ui",
"version": "0.3.13",
"description": "Equibit Web Wallet UI",
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/EDC/wallet-ui.git"
},
"author": {
"name": "EDC",
"email": "[email protected]",
"url": "https://equibitgroup.com"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "node start.js",
"develop": "done-serve --static --develop --port 8080",
"build": "npm run remove-build && node build",
"remove-build": "make remove-build",
"docs": "documentjs -f -d",
"docs:publish": "npm run build && npm run docs && make docs-publish",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm-run-all lint test:unit",
"test:funcunit": "testee test/test-funcunit.html --browsers firefox --reporter Spec",
"test:unit": "testee test/test.html --browsers firefox --reporter Spec",
"qa": "npm run release:qa:patch",
"release:qa:patch": "npm test && npm run build && npm version patch && make release-qa",
"release:qa:minor": "npm test && npm run build && npm version minor && make release-qa",
"release:qa:major": "npm test && npm run build && npm version major && make release-qa",
"deps-bundle": "steal-tools bundle --deps"
},
"main": "wallet-ui/index.stache!done-autorender/src/no-zone",
"files": [
"src"
],
"keywords": [
"equibit",
"bitcoin",
"keychain",
"blockchain",
"wallet"
],
"standard": {
"env": [
"mocha"
],
"ignore": [
"dev-bundle.js"
]
},
"steal": {
"main": "wallet-ui/index.stache!done-autorender/src/no-zone",
"directories": {
"lib": "src"
},
"configDependencies": [
"node_modules/can-zone/register"
],
"plugins": [
"chai",
"done-css",
"done-component",
"steal-less",
"steal-stache"
],
"envs": {
"server-production": {
"renderingBaseURL": "/dist"
}
},
"serviceBaseURL": "",
"map": {
"assert": "chai/chai"
},
"meta": {
"bootstrap/dist/js/bootstrap": {
"deps": [
"jquery"
]
},
"chai/chai": {
"format": "global",
"exports": "chai.assert"
},
"tether": {
"exports": "Tether"
}
}
},
"dependencies": {
"@equibit/wallet-crypto": "^0.6.2",
"accounting": "^0.4.1",
"bip39": "^2.3.1",
"bit-c3": "^0.2.4",
"bitcoinjs-lib": "^3.0.3",
"body-parser": "^1.17.1",
"bootstrap": "^3.3.7",
"bootstrap-canjs": "^0.1.4",
"can-cid": "^1.0.3",
"can-component": "^3.3.4",
"can-connect": "^1.5.8",
"can-connect-feathers": "^3.6.1",
"can-define": "^1.4.5",
"can-define-stream": "^0.2.1",
"can-define-stream-kefir": "^0.1.2",
"can-event": "^3.7.4",
"can-route": "^3.2.3",
"can-route-pushstate": "^3.1.1",
"can-search-select": "^0.3.0",
"can-set": "^1.3.2",
"can-stache": "^3.8.0",
"can-stream": "^0.3.1",
"can-stream-kefir": "^0.3.1",
"can-view-autorender": "^3.1.1",
"can-view-callbacks": "^3.2.0",
"candlestick-volume-chart": "0.2.3",
"copy-to-clipboard": "^3.0.8",
"core-js": "^2.5.1",
"done-autorender": "^1.3.1",
"done-component": "^1.0.0",
"done-css": "^3.0.0",
"done-serve": "^1.4.0",
"express-session": "^1.15.5",
"feathers": "^2.2.0",
"feathers-authentication-client": "^0.3.3",
"feathers-authentication-signed": "^2.0.9",
"feathers-hooks": "^2.0.2",
"feathers-rest": "^1.8.0",
"feathers-socketio": "^1.6.0",
"flexboxgrid-less": "^0.0.1",
"generator-donejs": "^1.0.7",
"grid-component": "^0.9.0",
"jquery": "^3.2.1",
"kefir": "^3.7.4",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"ramda": "^0.24.1",
"tether": "^1.4.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"babel-eslint": "^7.2.2",
"can-fixture": "^1.1.1",
"can-view-model": "^3.4.0",
"chai": "^4.1.2",
"documentjs": "^0.5.1",
"donejs-cli": "^1.0.2",
"funcunit": "^3.4.2",
"mocha": "^3.5.0",
"npm-run-all": "^4.1.1",
"standard": "^10.0.3",
"steal": "^1.5.13",
"steal-less": "^1.2.0",
"steal-mocha": "^1.0.0",
"steal-socket.io": "^4.0.9",
"steal-stache": "3.1.1",
"steal-tools": "^1.8.4",
"testee": "^0.7.0"
}
}
This file has been truncated, but you can view the full file.
travis_fold:start:worker_info
Worker information
hostname: 88e5912f-451c-4b5c-9765-69a0a3cf77f0@1.i-08964cf-production-2-worker-com-ec2.travisci.net
version: v3.0.2 https://github.com/travis-ci/worker/tree/f1c05caed79c66a9103f12a22e8a45ec66dbca64
instance: 0742968:travis:node_js (via amqp)
startup: 2.14400259s
travis_fold:end:worker_info
travis_fold:start:system_info
Build system information
Build language: node_js
Build group: stable
Build dist: trusty
Build id: 55894955
Job id: 92845947
Runtime kernel version: 4.11.6-041106-generic
travis-build version: 125c5d1fa
Build image provisioning date and time
Tue Aug 29 02:50:02 UTC 2017
Operating System Details
Distributor ID: Ubuntu
Description: Ubuntu 14.04.5 LTS
Release: 14.04
Codename: trusty
Cookbooks Version
4642454 https://github.com/travis-ci/travis-cookbooks/tree/4642454
git version
git version 2.14.1
bash version
GNU bash, version 4.3.11(1)-release (x86_64-pc-linux-gnu)
gcc version
gcc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
docker version
Client:
Version: 17.03.1-ce
API version: 1.27
Go version: go1.7.5
Git commit: c6d412e
Built: Mon Mar 27 16:58:30 2017
OS/Arch: linux/amd64
clang version
clang version 3.9.0 (tags/RELEASE_390/final)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/local/clang-3.9.0/bin
jq version
jq-1.5
bats version
Bats 0.4.0
shellcheck version
0.4.6
shfmt version
v1.3.1
ccache version
ccache version 3.1.9
Copyright (C) 2002-2007 Andrew Tridgell
Copyright (C) 2009-2011 Joel Rosdahl
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 3 of the License, or (at your option) any later
version.
cmake version
cmake version 3.2.2
CMake suite maintained and supported by Kitware (kitware.com/cmake).
heroku version
heroku-cli/6.13.19-6cd27b3 (linux-x64) node-v8.3.0
imagemagick version
Version: ImageMagick 6.7.7-10 2017-07-31 Q16 http://www.imagemagick.org
md5deep version
4.2
mercurial version
Mercurial Distributed SCM (version 4.2.2)
(see https://mercurial-scm.org for more information)
Copyright (C) 2005-2017 Matt Mackall and others
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
mysql version
mysql Ver 14.14 Distrib 5.6.33, for debian-linux-gnu (x86_64) using EditLine wrapper
openssl version
OpenSSL 1.0.1f 6 Jan 2014
packer version
Packer v1.0.2
Your version of Packer is out of date! The latest version
is 1.0.4. You can update by downloading from www.packer.io
postgresql client version
psql (PostgreSQL) 9.6.4
ragel version
Ragel State Machine Compiler version 6.8 Feb 2013
Copyright (c) 2001-2009 by Adrian Thurston
subversion version
svn, version 1.8.8 (r1568071)
compiled Aug 10 2017, 17:20:39 on x86_64-pc-linux-gnu
Copyright (C) 2013 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/
The following repository access (RA) modules are available:
* ra_svn : Module for accessing a repository using the svn network protocol.
- with Cyrus SASL authentication
- handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
- handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
- using serf 1.3.3
- handles 'http' scheme
- handles 'https' scheme
sudo version
Sudo version 1.8.9p5
Configure options: --prefix=/usr -v --with-all-insults --with-pam --with-fqdn --with-logging=syslog --with-logfac=authpriv --with-env-editor --with-editor=/usr/bin/editor --with-timeout=15 --with-password-timeout=0 --with-passprompt=[sudo] password for %p: --without-lecture --with-tty-tickets --disable-root-mailer --enable-admin-flag --with-sendmail=/usr/sbin/sendmail --with-timedir=/var/lib/sudo --mandir=/usr/share/man --libexecdir=/usr/lib/sudo --with-sssd --with-sssd-lib=/usr/lib/x86_64-linux-gnu --with-selinux
Sudoers policy plugin version 1.8.9p5
Sudoers file grammar version 43
Sudoers path: /etc/sudoers
Authentication methods: 'pam'
Syslog facility if syslog is being used for logging: authpriv
Syslog priority to use when user authenticates successfully: notice
Syslog priority to use when user authenticates unsuccessfully: alert
Send mail if the user is not in sudoers
Use a separate timestamp for each user/tty combo
Lecture user the first time they run sudo
Root may run sudo
Allow some information gathering to give useful error messages
Require fully-qualified hostnames in the sudoers file
Visudo will honor the EDITOR environment variable
Set the LOGNAME and USER environment variables
Length at which to wrap log file lines (0 for no wrap): 80
Authentication timestamp timeout: 15.0 minutes
Password prompt timeout: 0.0 minutes
Number of tries to enter a password: 3
Umask to use or 0777 to use user's: 022
Path to mail program: /usr/sbin/sendmail
Flags for mail program: -t
Address to send mail to: root
Subject line for mail messages: *** SECURITY information for %h ***
Incorrect password message: Sorry, try again.
Path to authentication timestamp dir: /var/lib/sudo
Default password prompt: [sudo] password for %p:
Default user to run commands as: root
Value to override user's $PATH with: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
Path to the editor for use by visudo: /usr/bin/editor
When to require a password for 'list' pseudocommand: any
When to require a password for 'verify' pseudocommand: all
File descriptors >= 3 will be closed before executing a command
Environment variables to check for sanity:
TZ
TERM
LINGUAS
LC_*
LANGUAGE
LANG
COLORTERM
Environment variables to remove:
RUBYOPT
RUBYLIB
PYTHONUSERBASE
PYTHONINSPECT
PYTHONPATH
PYTHONHOME
TMPPREFIX
ZDOTDIR
READNULLCMD
NULLCMD
FPATH
PERL5DB
PERL5OPT
PERL5LIB
PERLLIB
PERLIO_DEBUG
JAVA_TOOL_OPTIONS
SHELLOPTS
GLOBIGNORE
PS4
BASH_ENV
ENV
TERMCAP
TERMPATH
TERMINFO_DIRS
TERMINFO
_RLD*
LD_*
PATH_LOCALE
NLSPATH
HOSTALIASES
RES_OPTIONS
LOCALDOMAIN
CDPATH
IFS
Environment variables to preserve:
JAVA_HOME
TRAVIS
CI
DEBIAN_FRONTEND
XAUTHORIZATION
XAUTHORITY
PS2
PS1
PATH
LS_COLORS
KRB5CCNAME
HOSTNAME
HOME
DISPLAY
COLORS
Locale to use while parsing sudoers: C
Directory in which to store input/output logs: /var/log/sudo-io
File in which to store the input/output log: %{seq}
Add an entry to the utmp/utmpx file when allocating a pty
PAM service name to use
PAM service name to use for login shells
Create a new PAM session for the command to run in
Maximum I/O log sequence number: 0
Local IP address and netmask pairs:
172.17.0.2/255.255.0.0
Sudoers I/O plugin version 1.8.9p5
gzip version
gzip 1.6
Copyright (C) 2007, 2010, 2011 Free Software Foundation, Inc.
Copyright (C) 1993 Jean-loup Gailly.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.
Written by Jean-loup Gailly.
zip version
Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license.
This is Zip 3.0 (July 5th 2008), by Info-ZIP.
Currently maintained by E. Gordon. Please send bug reports to
the authors using the web page at www.info-zip.org; see README for details.
Latest sources and executables are at ftp://ftp.info-zip.org/pub/infozip,
as of above date; see http://www.info-zip.org/ for other sites.
Compiled with gcc 4.8.2 for Unix (Linux ELF) on Oct 21 2013.
Zip special compilation options:
USE_EF_UT_TIME (store Universal Time)
BZIP2_SUPPORT (bzip2 library version 1.0.6, 6-Sept-2010)
bzip2 code and library copyright (c) Julian R Seward
(See the bzip2 license for terms of use)
SYMLINK_SUPPORT (symbolic links supported)
LARGE_FILE_SUPPORT (can read and write large files on file system)
ZIP64_SUPPORT (use Zip64 to store large files in archives)
UNICODE_SUPPORT (store and read UTF-8 Unicode paths)
STORE_UNIX_UIDs_GIDs (store UID/GID sizes/values using new extra field)
UIDGID_NOT_16BIT (old Unix 16-bit UID/GID extra field not used)
[encryption, version 2.91 of 05 Jan 2007] (modified for Zip 3)
Encryption notice:
The encryption code of this program is not copyrighted and is
put in the public domain. It was originally written in Europe
and, to the best of our knowledge, can be freely distributed
in both source and object forms from any country, including
the USA under License Exception TSU of the U.S. Export
Administration Regulations (section 740.13(e)) of 6 June 2002.
Zip environment options:
ZIP: [none]
ZIPOPT: [none]
vim version
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Nov 24 2016 16:43:18)
Included patches: 1-52
Extra patches: 8.0.0056
Modified by [email protected]
Compiled by buildd@
Huge version without GUI. Features included (+) or not (-):
+acl +farsi +mouse_netterm +syntax
+arabic +file_in_path +mouse_sgr +tag_binary
+autocmd +find_in_path -mouse_sysmouse +tag_old_static
-balloon_eval +float +mouse_urxvt -tag_any_white
-browse +folding +mouse_xterm -tcl
++builtin_terms -footer +multi_byte +terminfo
+byte_offset +fork() +multi_lang +termresponse
+cindent +gettext -mzscheme +textobjects
-clientserver -hangul_input +netbeans_intg +title
-clipboard +iconv +path_extra -toolbar
+cmdline_compl +insert_expand -perl +user_commands
+cmdline_hist +jumplist +persistent_undo +vertsplit
+cmdline_info +keymap +postscript +virtualedit
+comments +langmap +printer +visual
+conceal +libcall +profile +visualextra
+cryptv +linebreak +python +viminfo
+cscope +lispindent -python3 +vreplace
+cursorbind +listcmds +quickfix +wildignore
+cursorshape +localmap +reltime +wildmenu
+dialog_con -lua +rightleft +windows
+diff +menu -ruby +writebackup
+digraphs +mksession +scrollbind -X11
-dnd +modify_fname +signs -xfontset
-ebcdic +mouse +smartindent -xim
+emacs_tags -mouseshape -sniff -xsmp
+eval +mouse_dec +startuptime -xterm_clipboard
+ex_extra +mouse_gpm +statusline -xterm_save
+extra_search -mouse_jsbterm -sun_workshop -xpm
system vimrc file: "$VIM/vimrc"
user vimrc file: "$HOME/.vimrc"
2nd user vimrc file: "~/.vim/vimrc"
user exrc file: "$HOME/.exrc"
fall-back for $VIM: "/usr/share/vim"
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
Linking: gcc -Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,--as-needed -o vim -lm -ltinfo -lnsl -lselinux -lacl -lattr -lgpm -ldl -L/usr/lib/python2.7/config-x86_64-linux-gnu -lpython2.7 -lpthread -ldl -lutil -lm -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
iptables version
iptables v1.4.21
curl version
curl 7.35.0 (x86_64-pc-linux-gnu) libcurl/7.35.0 OpenSSL/1.0.1f zlib/1.2.8 libidn/1.28 librtmp/2.3
wget version
GNU Wget 1.15 built on linux-gnu.
rsync version
rsync version 3.1.0 protocol version 31
gimme version
v1.2.0
nvm version
0.33.2
perlbrew version
/home/travis/perl5/perlbrew/bin/perlbrew - App::perlbrew/0.80
phpenv version
rbenv 1.1.1-4-g4ebd1bd
rvm version
rvm 1.29.2 (latest) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io/]
default ruby version
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
CouchDB version
couchdb 1.6.1
ElasticSearch version
5.5.0
Installed Firefox version
firefox 55.0.2
MongoDB version
MongoDB 3.2.16
Pre-installed PostgreSQL versions
9.2.22
9.3.18
9.4.13
9.5.8
9.6.4
RabbitMQ Version
3.6.11
Redis version
redis-server 4.0.1
riak version
2.2.3
Pre-installed Go versions
1.7.4
ant version
Apache Ant(TM) version 1.9.3 compiled on April 8 2014
mvn version
Apache Maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T19:39:06Z)
Maven home: /usr/local/maven-3.5.0
Java version: 1.8.0_144, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-8-oracle/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "4.4.0-92-generic", arch: "amd64", family: "unix"
gradle version
------------------------------------------------------------
Gradle 4.0.1
------------------------------------------------------------
Build time: 2017-07-07 14:02:41 UTC
Revision: 38e5dc0f772daecca1d2681885d3d85414eb6826
Groovy: 2.4.11
Ant: Apache Ant(TM) version 1.9.6 compiled on June 29 2015
JVM: 1.8.0_144 (Oracle Corporation 25.144-b01)
OS: Linux 4.4.0-92-generic amd64
lein version
WARNING: You're currently running as root; probably by accident.
Press control-C to abort or Enter to continue as root.
Set LEIN_ROOT to disable this warning.
Leiningen 2.7.1 on Java 1.8.0_144 Java HotSpot(TM) 64-Bit Server VM
Pre-installed Node.js versions
v4.8.4
v6.11.2
v6.9.4
v7.4.0
v8.4
phpenv versions
system
5.6
* 5.6.31 (set by /home/travis/.phpenv/version)
7.0
7.0.22
hhvm
hhvm-stable
composer --version
Composer version 1.4.2 2017-05-17 08:17:52
Pre-installed Ruby versions
ruby-2.2.7
ruby-2.3.4
ruby-2.4.1
travis_fold:end:system_info

W: http://dl.hhvm.com/ubuntu/dists/trusty/InRelease: Signature by key 36AEF64D0207E7EEE352D4875A16E7281BE7A449 uses weak digest algorithm (SHA1)
W: http://ppa.launchpad.net/couchdb/stable/ubuntu/dists/trusty/Release.gpg: Signature by key 15866BAFD9BCC4F3C1E0DFC7D69548E1C17EAB57 uses weak digest algorithm (SHA1)
Installing an SSH key from: default repository key
Key fingerprint: 73:a4:55:47:ea:17:94:ab:36:39:65:ea:c3:ba:91:58
travis_fold:start:git.checkout
travis_time:start:25bdceef
$ git clone --depth=50 [email protected]:Equibit/wallet-ui.git Equibit/wallet-ui
Cloning into 'Equibit/wallet-ui'...
Warning: Permanently added the RSA host key for IP address '192.30.253.113' to the list of known hosts.
remote: Counting objects: 3539, done.
remote: Compressing objects: 0% (1/1308) 
remote: Compressing objects: 1% (14/1308) 
remote: Compressing objects: 2% (27/1308) 
remote: Compressing objects: 3% (40/1308) 
remote: Compressing objects: 4% (53/1308) 
remote: Compressing objects: 5% (66/1308) 
remote: Compressing objects: 6% (79/1308) 
remote: Compressing objects: 7% (92/1308) 
remote: Compressing objects: 8% (105/1308) 
remote: Compressing objects: 9% (118/1308) 
remote: Compressing objects: 10% (131/1308) 
remote: Compressing objects: 11% (144/1308) 
remote: Compressing objects: 12% (157/1308) 
remote: Compressing objects: 13% (171/1308) 
remote: Compressing objects: 14% (184/1308) 
remote: Compressing objects: 15% (197/1308) 
remote: Compressing objects: 16% (210/1308) 
remote: Compressing objects: 17% (223/1308) 
remote: Compressing objects: 18% (236/1308) 
remote: Compressing objects: 19% (249/1308) 
remote: Compressing objects: 20% (262/1308) 
remote: Compressing objects: 21% (275/1308) 
remote: Compressing objects: 22% (288/1308) 
remote: Compressing objects: 23% (301/1308) 
remote: Compressing objects: 24% (314/1308) 
remote: Compressing objects: 25% (327/1308) 
remote: Compressing objects: 26% (341/1308) 
remote: Compressing objects: 27% (354/1308) 
remote: Compressing objects: 28% (367/1308) 
remote: Compressing objects: 29% (380/1308) 
remote: Compressing objects: 30% (393/1308) 
remote: Compressing objects: 31% (406/1308) 
remote: Compressing objects: 32% (419/1308) 
remote: Compressing objects: 33% (432/1308) 
remote: Compressing objects: 34% (445/1308) 
remote: Compressing objects: 35% (458/1308) 
remote: Compressing objects: 36% (471/1308) 
remote: Compressing objects: 37% (484/1308) 
remote: Compressing objects: 38% (498/1308) 
remote: Compressing objects: 39% (511/1308) 
remote: Compressing objects: 40% (524/1308) 
remote: Compressing objects: 41% (537/1308) 
remote: Compressing objects: 42% (550/1308) 
remote: Compressing objects: 43% (563/1308) 
remote: Compressing objects: 44% (576/1308) 
remote: Compressing objects: 45% (589/1308) 
remote: Compressing objects: 46% (602/1308) 
remote: Compressing objects: 47% (615/1308) 
remote: Compressing objects: 48% (628/1308) 
remote: Compressing objects: 49% (641/1308) 
remote: Compressing objects: 50% (654/1308) 
remote: Compressing objects: 51% (668/1308) 
remote: Compressing objects: 52% (681/1308) 
remote: Compressing objects: 53% (694/1308) 
remote: Compressing objects: 54% (707/1308) 
remote: Compressing objects: 55% (720/1308) 
remote: Compressing objects: 56% (733/1308) 
remote: Compressing objects: 57% (746/1308) 
remote: Compressing objects: 58% (759/1308) 
remote: Compressing objects: 59% (772/1308) 
remote: Compressing objects: 60% (785/1308) 
remote: Compressing objects: 61% (798/1308) 
remote: Compressing objects: 62% (811/1308) 
remote: Compressing objects: 63% (825/1308) 
remote: Compressing objects: 64% (838/1308) 
remote: Compressing objects: 65% (851/1308) 
remote: Compressing objects: 66% (864/1308) 
remote: Compressing objects: 67% (877/1308) 
remote: Compressing objects: 68% (890/1308) 
remote: Compressing objects: 69% (903/1308) 
remote: Compressing objects: 70% (916/1308) 
remote: Compressing objects: 71% (929/1308) 
remote: Compressing objects: 72% (942/1308) 
remote: Compressing objects: 73% (955/1308) 
remote: Compressing objects: 74% (968/1308) 
remote: Compressing objects: 75% (981/1308) 
remote: Compressing objects: 76% (995/1308) 
remote: Compressing objects: 77% (1008/1308) 
remote: Compressing objects: 78% (1021/1308) 
remote: Compressing objects: 79% (1034/1308) 
remote: Compressing objects: 80% (1047/1308) 
remote: Compressing objects: 81% (1060/1308) 
remote: Compressing objects: 82% (1073/1308) 
remote: Compressing objects: 83% (1086/1308) 
remote: Compressing objects: 84% (1099/1308) 
remote: Compressing objects: 85% (1112/1308) 
remote: Compressing objects: 86% (1125/1308) 
remote: Compressing objects: 87% (1138/1308) 
remote: Compressing objects: 88% (1152/1308) 
remote: Compressing objects: 89% (1165/1308) 
remote: Compressing objects: 90% (1178/1308) 
remote: Compressing objects: 91% (1191/1308) 
remote: Compressing objects: 92% (1204/1308) 
remote: Compressing objects: 93% (1217/1308) 
remote: Compressing objects: 94% (1230/1308) 
remote: Compressing objects: 95% (1243/1308) 
remote: Compressing objects: 96% (1256/1308) 
remote: Compressing objects: 97% (1269/1308) 
remote: Compressing objects: 98% (1282/1308) 
remote: Compressing objects: 99% (1295/1308) 
remote: Compressing objects: 100% (1308/1308) 
remote: Compressing objects: 100% (1308/1308), done.
Receiving objects: 0% (1/3539)
Receiving objects: 1% (36/3539)
Receiving objects: 2% (71/3539)
Receiving objects: 3% (107/3539)
Receiving objects: 4% (142/3539)
Receiving objects: 5% (177/3539)
Receiving objects: 6% (213/3539)
Receiving objects: 7% (248/3539)
Receiving objects: 8% (284/3539)
Receiving objects: 9% (319/3539)
Receiving objects: 10% (354/3539)
Receiving objects: 11% (390/3539)
Receiving objects: 12% (425/3539)
Receiving objects: 13% (461/3539)
Receiving objects: 14% (496/3539)
Receiving objects: 15% (531/3539)
Receiving objects: 16% (567/3539)
Receiving objects: 17% (602/3539)
Receiving objects: 18% (638/3539)
Receiving objects: 19% (673/3539)
Receiving objects: 20% (708/3539)
Receiving objects: 21% (744/3539)
Receiving objects: 22% (779/3539)
Receiving objects: 23% (814/3539)
Receiving objects: 24% (850/3539)
Receiving objects: 25% (885/3539)
Receiving objects: 26% (921/3539)
Receiving objects: 27% (956/3539)
Receiving objects: 28% (991/3539)
Receiving objects: 29% (1027/3539)
Receiving objects: 30% (1062/3539)
Receiving objects: 31% (1098/3539)
Receiving objects: 32% (1133/3539)
Receiving objects: 33% (1168/3539)
Receiving objects: 34% (1204/3539)
Receiving objects: 35% (1239/3539)
Receiving objects: 36% (1275/3539)
Receiving objects: 37% (1310/3539)
Receiving objects: 38% (1345/3539)
Receiving objects: 39% (1381/3539)
Receiving objects: 40% (1416/3539)
Receiving objects: 41% (1451/3539)
Receiving objects: 42% (1487/3539)
Receiving objects: 43% (1522/3539)
Receiving objects: 44% (1558/3539)
Receiving objects: 45% (1593/3539)
Receiving objects: 46% (1628/3539)
Receiving objects: 47% (1664/3539)
Receiving objects: 48% (1699/3539)
Receiving objects: 49% (1735/3539)
Receiving objects: 50% (1770/3539)
Receiving objects: 51% (1805/3539)
Receiving objects: 52% (1841/3539)
Receiving objects: 53% (1876/3539)
Receiving objects: 54% (1912/3539)
Receiving objects: 55% (1947/3539)
Receiving objects: 56% (1982/3539)
Receiving objects: 57% (2018/3539)
Receiving objects: 58% (2053/3539)
Receiving objects: 59% (2089/3539)
Receiving objects: 60% (2124/3539)
Receiving objects: 61% (2159/3539)
Receiving objects: 62% (2195/3539)
Receiving objects: 63% (2230/3539)
Receiving objects: 64% (2265/3539)
Receiving objects: 65% (2301/3539)
Receiving objects: 66% (2336/3539)
Receiving objects: 67% (2372/3539)
Receiving objects: 68% (2407/3539)
Receiving objects: 69% (2442/3539)
Receiving objects: 70% (2478/3539)
Receiving objects: 71% (2513/3539)
Receiving objects: 72% (2549/3539)
Receiving objects: 73% (2584/3539)
Receiving objects: 74% (2619/3539)
Receiving objects: 75% (2655/3539)
Receiving objects: 76% (2690/3539)
Receiving objects: 77% (2726/3539)
Receiving objects: 78% (2761/3539)
Receiving objects: 79% (2796/3539)
Receiving objects: 80% (2832/3539)
Receiving objects: 81% (2867/3539)
Receiving objects: 82% (2902/3539)
Receiving objects: 83% (2938/3539)
Receiving objects: 84% (2973/3539)
Receiving objects: 85% (3009/3539)
Receiving objects: 86% (3044/3539)
Receiving objects: 87% (3079/3539)
Receiving objects: 88% (3115/3539)
Receiving objects: 89% (3150/3539)
Receiving objects: 90% (3186/3539)
Receiving objects: 91% (3221/3539)
Receiving objects: 92% (3256/3539)
Receiving objects: 93% (3292/3539)
Receiving objects: 94% (3327/3539)
remote: Total 3539 (delta 2486), reused 2935 (delta 2181), pack-reused 0
Receiving objects: 95% (3363/3539)
Receiving objects: 96% (3398/3539)
Receiving objects: 97% (3433/3539)
Receiving objects: 98% (3469/3539)
Receiving objects: 99% (3504/3539)
Receiving objects: 100% (3539/3539)
Receiving objects: 100% (3539/3539), 890.28 KiB | 24.73 MiB/s, done.
Resolving deltas: 0% (0/2486)
Resolving deltas: 8% (218/2486)
Resolving deltas: 12% (319/2486)
Resolving deltas: 17% (445/2486)
Resolving deltas: 18% (448/2486)
Resolving deltas: 19% (475/2486)
Resolving deltas: 20% (501/2486)
Resolving deltas: 22% (569/2486)
Resolving deltas: 24% (604/2486)
Resolving deltas: 25% (633/2486)
Resolving deltas: 26% (650/2486)
Resolving deltas: 27% (673/2486)
Resolving deltas: 28% (711/2486)
Resolving deltas: 29% (734/2486)
Resolving deltas: 30% (753/2486)
Resolving deltas: 31% (781/2486)
Resolving deltas: 32% (799/2486)
Resolving deltas: 33% (827/2486)
Resolving deltas: 34% (856/2486)
Resolving deltas: 35% (878/2486)
Resolving deltas: 36% (896/2486)
Resolving deltas: 37% (922/2486)
Resolving deltas: 38% (956/2486)
Resolving deltas: 39% (972/2486)
Resolving deltas: 41% (1026/2486)
Resolving deltas: 42% (1046/2486)
Resolving deltas: 43% (1069/2486)
Resolving deltas: 44% (1101/2486)
Resolving deltas: 45% (1119/2486)
Resolving deltas: 46% (1146/2486)
Resolving deltas: 47% (1175/2486)
Resolving deltas: 53% (1323/2486)
Resolving deltas: 54% (1364/2486)
Resolving deltas: 55% (1371/2486)
Resolving deltas: 57% (1441/2486)
Resolving deltas: 58% (1442/2486)
Resolving deltas: 59% (1474/2486)
Resolving deltas: 60% (1493/2486)
Resolving deltas: 61% (1524/2486)
Resolving deltas: 62% (1556/2486)
Resolving deltas: 63% (1590/2486)
Resolving deltas: 64% (1594/2486)
Resolving deltas: 65% (1621/2486)
Resolving deltas: 66% (1647/2486)
Resolving deltas: 67% (1666/2486)
Resolving deltas: 68% (1691/2486)
Resolving deltas: 69% (1718/2486)
Resolving deltas: 70% (1744/2486)
Resolving deltas: 71% (1787/2486)
Resolving deltas: 72% (1791/2486)
Resolving deltas: 73% (1830/2486)
Resolving deltas: 74% (1841/2486)
Resolving deltas: 75% (1873/2486)
Resolving deltas: 76% (1897/2486)
Resolving deltas: 77% (1916/2486)
Resolving deltas: 78% (1945/2486)
Resolving deltas: 79% (1972/2486)
Resolving deltas: 80% (1989/2486)
Resolving deltas: 81% (2015/2486)
Resolving deltas: 82% (2042/2486)
Resolving deltas: 83% (2065/2486)
Resolving deltas: 84% (2089/2486)
Resolving deltas: 85% (2114/2486)
Resolving deltas: 86% (2140/2486)
Resolving deltas: 87% (2176/2486)
Resolving deltas: 88% (2189/2486)
Resolving deltas: 89% (2213/2486)
Resolving deltas: 90% (2238/2486)
Resolving deltas: 91% (2263/2486)
Resolving deltas: 92% (2310/2486)
Resolving deltas: 93% (2312/2486)
Resolving deltas: 94% (2341/2486)
Resolving deltas: 95% (2379/2486)
Resolving deltas: 96% (2387/2486)
Resolving deltas: 97% (2412/2486)
Resolving deltas: 98% (2438/2486)
Resolving deltas: 99% (2462/2486)
Resolving deltas: 100% (2486/2486)
Resolving deltas: 100% (2486/2486), done.
travis_time:end:25bdceef:start=1506959691314686252,finish=1506959692259792121,duration=945105869
$ cd Equibit/wallet-ui
travis_time:start:09dc8d26
$ git fetch origin +refs/pull/482/merge:
Warning: Permanently added the RSA host key for IP address '192.30.253.112' to the list of known hosts.
remote: Counting objects: 3, done.
remote: Compressing objects: 50% (1/2) 
remote: Compressing objects: 100% (2/2) 
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 2), reused 1 (delta 1), pack-reused 0
Unpacking objects: 33% (1/3)
Unpacking objects: 66% (2/3)
Unpacking objects: 100% (3/3)
Unpacking objects: 100% (3/3), done.
From github.com:Equibit/wallet-ui
* branch refs/pull/482/merge -> FETCH_HEAD
travis_time:end:09dc8d26:start=1506959692266178635,finish=1506959692510781389,duration=244602754
$ git checkout -qf FETCH_HEAD
travis_fold:end:git.checkout
travis_fold:start:install_firefox
$ export FIREFOX_SOURCE_URL='https://download.mozilla.org/?product=firefox-51.0&lang=en-US&os=linux64'
Installing Firefox 51.0
travis_time:start:2ce5faf4
$ wget -O /tmp/firefox-51.0.tar.bz2 $FIREFOX_SOURCE_URL
--2017-10-02 15:54:52-- https://download.mozilla.org/?product=firefox-51.0&lang=en-US&os=linux64
Resolving download.mozilla.org (download.mozilla.org)... 34.194.5.237, 52.5.188.172, 52.55.40.197, ...
Connecting to download.mozilla.org (download.mozilla.org)|34.194.5.237|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://download.cdn.mozilla.net/pub/firefox/releases/51.0/linux-x86_64/en-US/firefox-51.0.tar.bz2 [following]
--2017-10-02 15:54:52-- http://download.cdn.mozilla.net/pub/firefox/releases/51.0/linux-x86_64/en-US/firefox-51.0.tar.bz2
Resolving download.cdn.mozilla.net (download.cdn.mozilla.net)... 23.72.224.128, 23.72.224.126, 2600:1408:20::6860:ddba, ...
Connecting to download.cdn.mozilla.net (download.cdn.mozilla.net)|23.72.224.128|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 57058362 (54M) [application/x-tar]
Saving to: ‘/tmp/firefox-51.0.tar.bz2’
0% [ ] 0 --.-K/s
7% [==> ] 4,486,154 21.4MB/s
20% [======> ] 11,422,282 26.6MB/s
33% [============> ] 19,072,154 29.7MB/s
44% [================> ] 25,397,386 28.9MB/s
56% [=====================> ] 32,291,386 29.5MB/s
67% [=========================> ] 38,425,194 29.4MB/s
81% [==============================> ] 46,324,594 30.5MB/s
94% [===================================> ] 53,885,098 31.1MB/s
100%[======================================>] 57,058,362 31.3MB/s in 1.7s
2017-10-02 15:54:54 (31.3 MB/s) - ‘/tmp/firefox-51.0.tar.bz2’ saved [57058362/57058362]
travis_time:end:2ce5faf4:start=1506959692557787358,finish=1506959694655683308,duration=2097895950
$ export PATH=$HOME/firefox-51.0/firefox:$PATH
travis_fold:end:install_firefox
$ firefox --version
Mozilla Firefox 51.0
$ export PATH=./node_modules/.bin:$PATH
Updating nvm
travis_fold:start:nvm.install
travis_time:start:17cc53e6
$ nvm install 7.3
Downloading and installing node v7.3.0...
Downloading https://nodejs.org/dist/v7.3.0/node-v7.3.0-linux-x64.tar.xz...
#### 5.9%
######################################################################## 100.0%
Computing checksum with sha256sum
Checksums matched!
Now using node v7.3.0 (npm v3.10.10)
travis_time:end:17cc53e6:start=1506959711704606236,finish=1506959714447721587,duration=2743115351
travis_fold:end:nvm.install
travis_fold:start:install.yarn
travis_fold:end:install.yarn
travis_fold:start:cache.1
Setting up build cache
$ export CASHER_DIR=$HOME/.casher
travis_time:start:02c959b0
$ Installing caching utilities
travis_time:end:02c959b0:start=1506959719746157165,finish=1506959719778164387,duration=32007222
travis_time:start:171791ff

travis_time:end:171791ff:start=1506959719786174043,finish=1506959719791835218,duration=5661175
travis_time:start:1ce703ec
attempting to download cache archive
fetching PR.482/cache-linux-trusty-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855--node-7.3.tgz
fetching PR.482/cache--node-7.3.tgz
fetching development/cache-linux-trusty-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855--node-7.3.tgz
found cache
travis_time:end:1ce703ec:start=1506959719798543086,finish=1506959729487313684,duration=9688770598
travis_fold:end:cache.1
travis_fold:start:cache.yarn

travis_time:start:10c67ffe

travis_time:end:10c67ffe:start=1506959729493304201,finish=1506959729498169795,duration=4865594
travis_time:start:03d40707
adding /home/travis/.cache/yarn to cache
creating directory /home/travis/.cache/yarn
travis_time:end:03d40707:start=1506959729504045212,finish=1506959745479423057,duration=15975377845
travis_fold:end:cache.yarn
$ node --version
v7.3.0
$ npm --version
3.10.10
$ nvm --version
0.33.4
travis_fold:start:before_install.1
travis_time:start:018389c8
$ export DISPLAY=:99.0
travis_time:end:018389c8:start=1506959746722381099,finish=1506959746727369198,duration=4988099
travis_fold:end:before_install.1
travis_fold:start:before_install.2
travis_time:start:0368ddd8
$ export DEBUG=testee:*
travis_time:end:0368ddd8:start=1506959746733344516,finish=1506959746738028675,duration=4684159
travis_fold:end:before_install.2
travis_fold:start:before_install.3
travis_time:start:088559a0
$ sh -e /etc/init.d/xvfb start
Starting virtual X frame buffer: Xvfb.
travis_time:end:088559a0:start=1506959746745857397,finish=1506959746755546208,duration=9688811
travis_fold:end:before_install.3
travis_fold:start:install
travis_time:start:0408a456
$ yarn
yarn install v0.27.5
[1/4] Resolving packages...
[2/4] Fetching packages...
warning [email protected]: The platform "linux" is incompatible with this module.
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
[4/4] Building fresh packages...
Done in 34.43s.
travis_time:end:0408a456:start=1506959746779164287,finish=1506959781824097373,duration=35044933086
travis_fold:end:install
travis_time:start:1c14a328
$ npm test
> [email protected] test /home/travis/build/Equibit/wallet-ui
> npm-run-all lint test:unit
> [email protected] lint /home/travis/build/Equibit/wallet-ui
> standard
> [email protected] test:unit /home/travis/build/Equibit/wallet-ui
> testee test/test.html --browsers firefox --reporter Spec
testee:main running test for [ 'test/test.html' ] [ 'firefox' ] { browsers: 'firefox', reporter: 'Spec' } +0ms
testee:main bootstrapping Testee +5ms
testee:main starting testee server { browsers: 'firefox',
reporter: 'Spec',
port: 3996,
root: '/home/travis/build/Equibit/wallet-ui',
adapter: '/testee/',
timeout: 120,
delay: 1000,
tunnel: { type: 'local', port: 3996 },
launch: { type: 'local' } } +1ms
testee:server initializing Feathers API +2ms
testee:hosting intializing static file server /home/travis/build/Equibit/wallet-ui +34ms
testee:main testee server started and listening on port 3996 +22ms
testee:main hooking up services to Mocha reporter +1ms
testee:reporter setting up Mocha command line reporter +0ms
testee:reporter start +0ms
testee:main starting up localhost tunnel { type: 'local', port: 3996 } +2ms
testee:main localhost tunnel started on http://localhost:3996 +1ms
testee:main using browser launcher local { type: 'local' } +0ms
testee:main browser launcher initialized +1ms
testee:main setting up test runner +1ms
testee:main server bootstrapped, running tests. +0ms
testee:runner running tests for [ 'test/test.html' ] [ 'firefox' ] +1ms
testee:runner initializing sequential test runs for browser firefox +0ms
testee:runner running individual test http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +6ms
testee:runner browser instance started { browser: 'firefox' } +103ms
testee:runner tracking test run http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed
testee:runner 
testee:runner (firefox:3807): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed
testee:runner 
testee:runner (firefox:3807): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed
testee:runner 
testee:runner (firefox:3807): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +255ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +205ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +688ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1s
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +277ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +9ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +8ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +8ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +431ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +8ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +10ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +290ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +98ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +23ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +10ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +6ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +3ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +322ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +9ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3967: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +49ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +54ms
testee:runner 
testee:runner (/home/travis/firefox-51.0/firefox/plugin-container:3967): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed
testee:runner 
testee:runner (/home/travis/firefox-51.0/firefox/plugin-container:3967): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed
testee:runner 
testee:runner (/home/travis/firefox-51.0/firefox/plugin-container:3967): GLib-GObject-CRITICAL **: g_object_ref: assertion 'object->ref_count > 0' failed
testee:runner 
testee:runner (/home/travis/firefox-51.0/firefox/plugin-container:3967): GLib-GObject-CRITICAL **: g_object_unref: assertion 'object->ref_count > 0' failed
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +252ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +3ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:html-injector injecting scripts into file /test/test.html?__token=hmb3de +28ms
Doctype not found; prepending "<!doctype html>" to prevent quirksmode problems
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +62ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +95ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +10ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +72ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +6ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:html-injector injecting scripts into file /favicon.ico +5ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +3ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +8ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:html-injector injecting scripts into file /favicon.ico +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +3ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +3ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +6ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +48ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +431ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +41ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +23ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +101ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +43ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +65ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +44ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +52ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +43ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +48ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +23ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +8ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +23ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +44ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +45ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +48ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +61ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +49ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +56ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +43ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +6ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +42ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +43ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +23ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +41ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +59ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +49ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +43ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +62ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +55ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +8ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +41ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +44ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +89ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +45ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +52ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +270ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +10ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +196ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +41ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +46ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +45ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +41ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +51ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +6ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +39ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +48ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +59ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +43ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +30ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +31ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +24ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +29ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +53ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +37ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +49ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +41ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +23ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +41ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +72ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +33ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +28ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +45ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +34ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +38ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +23ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +40ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +35ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +36ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +26ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +22ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +6ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +27ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +32ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +23ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +47ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +20ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +19ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +25ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +3ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +5ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +18ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +11ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +2ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +4ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +10ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +21ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +6ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +12ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +7ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +16ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +17ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +0ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +15ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +14ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorrectly set up; failed to read machine uuid: Failed to open "/etc/machine-id": No such file or directory
testee:runner See the manual page for dbus-uuidgen to correct this issue.
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +1ms
testee:runner 
testee:runner (firefox:3807): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
testee:runner //bin/dbus-launch terminated abnormally without any error message
testee:runner  http://localhost:3996/test/test.html?__token=hmb3de { browser: 'firefox' } +13ms
testee:runner process 3807: D-Bus library appears to be incorr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment