소스 검색

Fix window title for old FF47 binary startup

[skip ci]
Daniel Gempesaw 9 년 전
부모
커밋
80db7fffd8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/Selenium/CanStartBinary.pm

+ 1 - 1
lib/Selenium/CanStartBinary.pm

@@ -248,7 +248,7 @@ has 'window_title' => (
     init_arg => undef,
     builder => sub {
         my ($self) = @_;
-        my (undef, undef, $file) = File::Spec->splitpath( $self->binary );
+        my (undef, undef, $file) = File::Spec->splitpath( $self->_real_binary );
         my $port = $self->port;
 
         return $file . ':' . $port;