Jelajahi Sumber

Export a few more functions from Selenium::Binary

This is just temporary, I need to refactor the Selenium::Firefox implementation
Daniel Gempesaw 10 tahun lalu
induk
melakukan
5daec03655
1 mengubah file dengan 2 tambahan dan 0 penghapusan
  1. 2 0
      lib/Selenium/Binary.pm

+ 2 - 0
lib/Selenium/Binary.pm

@@ -1,5 +1,6 @@
 package Selenium::Binary;
 
+# ABSTRACT: Execute a binary asynchronously on a specific port
 use File::Which qw/which/;
 use IO::Socket::INET;
 use Selenium::Waiter qw/wait_until/;
@@ -7,6 +8,7 @@ use Selenium::Waiter qw/wait_until/;
 require Exporter;
 our @ISA = qw/Exporter/;
 our @EXPORT = qw/start_binary_on_port/;
+our @EXPORT_OK = qw/_find_open_port_above _probe_port/;
 
 sub start_binary_on_port {
     my ($process, $port) = @_;