We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9435361 commit 123c43cCopy full SHA for 123c43c
src/Selenium2Driver.php
@@ -90,6 +90,26 @@ protected function setBrowserName($browserName = 'firefox')
90
$this->browserName = $browserName;
91
}
92
93
+ /**
94
+ * Get the browser name
95
+ *
96
+ * @return string the name of the browser used.
97
+ */
98
+ public function getBrowserName()
99
+ {
100
+ return $this->browserName;
101
+ }
102
+
103
104
+ * Returns driver status.
105
106
+ * @return array driver status.
107
108
+ public function getStatus()
109
110
+ return $this->webDriver->status();
111
112
113
/**
114
* Sets the desired capabilities - called on construction. If null is provided, will set the
115
* defaults as desired.
0 commit comments