Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
67 views

In my PHP script I am using php-webdriver library with Edge webdriver to get data from a web page and I need to start Selenium standalone server from the script. I copied selenium-server-4.35.0.jar, ...
Stanislav Panferov's user avatar
0 votes
0 answers
42 views

In attempt to automation of some job on a certain site, I use php-webdriver. Target website is written in Vue. For certain POST query this site uses cookies, but this cookies does not present nor in ...
Andry's user avatar
  • 121
0 votes
1 answer
347 views

I need to automate downloading a csv file from my webserver. I am trying to complete this task with selenium for php. I wrote this script and it runs fine on my local machine, it runs, logs in to my ...
mathiflip's user avatar
0 votes
1 answer
291 views

This is a span tag which I have: <span id="CD417" oncontextmenu="myR(this)" style="cursor: pointer;" spanparent="RD417" reportinfostring="417|N|N|K1|...
Pir's user avatar
  • 1
9 votes
2 answers
22k views

Google Chrome 79.0.3945.130 ChromeDriver 79.0.3945.36 selenium-server-4.0.0-alpha-4.jar Newest code from the php-webdriver GitHub as of 1/22/2020 I am starting the Selenium server in standalone mode ...
joeyofblades's user avatar
2 votes
1 answer
939 views

There are quite a few posts about facebook/php-webdriver successfully downloading files when non-headless, and the same operation failing when headless. I'm looking for a successful implementation of ...
Ben Coffin's user avatar
3 votes
3 answers
4k views

I'm seeking to add options to an instance of Facebook/php-webdriver. This works to get the initial options: $options = \Facebook\WebDriver\Remote\DesiredCapabilities::chrome(); Now I'd like to add ...
VikR's user avatar
  • 5,154
4 votes
2 answers
4k views

namespace Facebook\WebDriver; use Facebook\WebDriver\Remote\DesiredCapabilities; use Facebook\WebDriver\Remote\RemoteWebDriver; require_once('vendor/autoload.php'); $host = 'http://localhost:4444/...
Parnit Das's user avatar
1 vote
1 answer
6k views

I'm trying to get some screenshot using php-driver. And it appears that despite taking the picture of the entire web page, it just taking the picture that appears on the monitor/screen (that's why we ...
White's user avatar
  • 13
2 votes
0 answers
202 views

Is there a possibility to export a HAR file from Chrome, when using facebook/php-webdriver ? Also is it possible to select a mobile emulator on chrome and throttle the internet speed?
nnikolay's user avatar
  • 1,771
2 votes
1 answer
2k views

Normaly you are using selenium to automate testcases and after the testcase finished running, the browser closes. However I try to use selenium webdriver to script specific tasks, e.g. login to a ...
Black's user avatar
  • 20.9k