1: <?php
2: namespace Peridot\WebDriverManager\Binary;
3:
4: /**
5: * Interface DriverInterface represents a binary that is a supported driver
6: * for selenium server.
7: *
8: * @package Peridot\WebDriverManager\Binary
9: */
10: interface DriverInterface
11: {
12: /**
13: * Return the driver path that will be used by selenium server.
14: *
15: * @param string $directory
16: * @return string
17: */
18: public function getDriverPath($directory);
19: }
20: