comparison vendor/behat/mink-selenium2-driver/tests/Custom/DesiredCapabilitiesTest.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 1fec387a4317
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
42 'name' => 'Selenium2 Mink Driver Test', 42 'name' => 'Selenium2 Mink Driver Test',
43 'deviceOrientation' => 'portrait', 43 'deviceOrientation' => 'portrait',
44 'deviceType' => 'tablet', 44 'deviceType' => 'tablet',
45 'selenium-version' => '2.45.0' 45 'selenium-version' => '2.45.0'
46 ); 46 );
47 $driver = $this->getSession()->getDriver(); 47 $session = $this->getSession();
48 $session->start();
49 $driver = $session->getDriver();
48 $driver->setDesiredCapabilities($caps); 50 $driver->setDesiredCapabilities($caps);
49 } 51 }
50 } 52 }