Невозможно добраться до элементов консоли с PhantomJS и Selenium - PullRequest
0 голосов
/ 07 февраля 2019

У меня следующий код, этот код работает с драйвером Chrome, но с библиотекой Phantom JS 1.4.4 и драйвером 2.1.1 не работает, я не могу найти элементы

Эта проблема не возникает с ChromeВодитель.

Испытания кода:

public void test1()
{
    DesiredCapabilities caps = new DesiredCapabilities();
    ((DesiredCapabilities) caps).setJavascriptEnabled(true);
    ((DesiredCapabilities) caps).setCapability("takesScreenshot",true);
    ((DesiredCapabilities) caps).setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY, "/Users/santiagogalicia/downloads/phantomjs");
    caps.setJavascriptEnabled(true);
    String [] phantomJsArgs = {"--web-security=no", "--ignore-ssl-errors=yes"};
    caps.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS, phantomJsArgs);
    WebDriver driver = new PhantomJSDriver(caps);
    Dimension dimension = new Dimension(400,600);
    driver.manage().window().setSize(dimension);
    driver.get("https://stage-commissionist.payclip.com/#/");
    WebDriverWait wait = new WebDriverWait(driver, 10);     
    wait.until(ExpectedConditions.elementToBeClickable(By.id("formUsername")));
    driver.findElement(By.id("formUsername")).sendKeys(User);
    driver.findElement(By.id("formPassword")).sendKeys(Password);
    driver.findElement(By.cssSelector(".btn")).click(); 
    driver.close();
}

Я пытался сменить драйвер и с другими драйверами работает

Я вижу ошибку:

[ERROR - 2019-02-07T19:15:26.476Z] Session [b736bad0-2b0c-11e9-b0db-6d1517ea5006] - page.onError - msg: ReferenceError: Can't find variable: Set phantomjs://platform/console++.js:263 in error
[ERROR - 2019-02-07T19:15:26.476Z] Session [b736bad0-2b0c-11e9-b0db-6d1517ea5006] - page.onError - stack:
  (anonymous function) (https://stage-commissionist.payclip.com/static/js/1.ea7f0607.chunk.js:1)
  f (https://stage-commissionist.payclip.com/#/:1)
  phantomjs://platform/console++.js:263 in error
[ERROR - 2019-02-07T19:15:26.759Z] WebElementLocator - _handleLocateCommand - Element(s) NOT Found: GAVE UP. Search Stop Time: 1549566926721

1 Ответ

0 голосов
/ 09 февраля 2019

Как вы упомянули этот код работает с драйвером Chrome, но с библиотекой Phantom JS 1.4.4 и 2.1.1 это сообщение об ошибке ...

[ERROR - 2019-02-07T19:15:26.476Z] Session [b736bad0-2b0c-11e9-b0db-6d1517ea5006] - page.onError - msg: ReferenceError: Can't find variable: Set phantomjs://platform/console++.js:263 in error
[ERROR - 2019-02-07T19:15:26.476Z] Session [b736bad0-2b0c-11e9-b0db-6d1517ea5006] - page.onError - stack: (anonymous function) (https://stage-commissionist.payclip.com/static/js/1.ea7f0607.chunk.js:1) f (https://stage-commissionist.payclip.com/#/:1)
phantomjs://platform/console++.js:263 in error [ERROR - 2019-02-07T19:15:26.759Z] WebElementLocator - _handleLocateCommand - Element(s) NOT Found: GAVE UP. Search Stop Time: 1549566926721

... подразумевает, что PhantomJSDriver не был инициирован должным образом.

Согласно обсуждению в ReferenceError: Невозможно найти переменную: Set Основная причина, по-видимому, одна из предыдущих версий PhantomJS не поддерживает ES2015 Set.

Решение

Вы можете попробовать экспериментальную ветку uncss, которая использует jsdom вместоPhantomJS, установив вместо него uncss-jsdom.Вы можете найти слияние в # 265: замените PhantomJS на jsdom .Здесь вы можете найти обсуждение Рассмотрите jsdom

Однако, с Selenium v3.14.0 и phantomjsdriver-1.4.4.jar ваш кодБлок инициализирует PhantomJSDriver и Ghost Browser просто perfecto, и вы можете использовать следующее решение:

  • Кодовый блок:

    package phantomJSDriver;
    
    import org.openqa.selenium.Dimension;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.phantomjs.PhantomJSDriver;
    import org.openqa.selenium.phantomjs.PhantomJSDriverService;
    import org.openqa.selenium.remote.DesiredCapabilities;
    
    public class A_PhantomJS_DCap {
    
        public static void main(String[] args) {
    
            DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
            desiredCapabilities.setJavascriptEnabled(true);
            desiredCapabilities.setCapability("takesScreenshot", true);
            desiredCapabilities.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY, "C:\\Utility\\phantomjs-2.1.1-windows\\bin\\phantomjs.exe");
            String [] phantomJsArgs = {"--web-security=no", "--ignore-ssl-errors=yes"};
            desiredCapabilities.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS, phantomJsArgs);
            WebDriver driver = new PhantomJSDriver(desiredCapabilities);
            Dimension dimension = new Dimension(400,600);
            driver.manage().window().setSize(dimension);
            driver.get("https://www.google.co.in");
            System.out.println(driver.getTitle());
            driver.quit();
        }
    }
    
  • Вывод на консоль:

    Feb 09, 2019 8:35:12 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
    INFO: executable: C:\Utility\phantomjs-2.1.1-windows\bin\phantomjs.exe
    Feb 09, 2019 8:35:12 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
    INFO: port: 18249
    Feb 09, 2019 8:35:12 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
    INFO: arguments: [--web-security=no, --ignore-ssl-errors=yes, --webdriver=18249, --webdriver-logfile=C:\Users\AtechM_03\LearnAutmation\learn-automation\phantomjsdriver.log]
    Feb 09, 2019 8:35:12 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
    INFO: environment: {}
    [INFO  - 2019-02-09T15:05:14.986Z] GhostDriver - Main - running on port 18249
    [INFO  - 2019-02-09T15:05:16.008Z] Session [1b791e00-2c7c-11e9-9e77-ef7d90721101] - page.settings - {"XSSAuditingEnabled":false,"javascriptCanCloseWindows":true,"javascriptCanOpenWindows":true,"javascriptEnabled":true,"loadImages":true,"localToRemoteUrlAccessEnabled":false,"userAgent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/538.1 (KHTML, like Gecko) PhantomJS/2.1.1 Safari/538.1","webSecurityEnabled":false}
    [INFO  - 2019-02-09T15:05:16.008Z] Session [1b791e00-2c7c-11e9-9e77-ef7d90721101] - page.customHeaders:  - {}
    [INFO  - 2019-02-09T15:05:16.008Z] Session [1b791e00-2c7c-11e9-9e77-ef7d90721101] - Session.negotiatedCapabilities - {"browserName":"phantomjs","version":"2.1.1","driverName":"ghostdriver","driverVersion":"1.2.0","platform":"windows-8-32bit","javascriptEnabled":true,"takesScreenshot":true,"handlesAlerts":false,"databaseEnabled":false,"locationContextEnabled":false,"applicationCacheEnabled":false,"browserConnectionEnabled":false,"cssSelectorsEnabled":true,"webStorageEnabled":false,"rotatable":false,"acceptSslCerts":false,"nativeEvents":true,"proxy":{"proxyType":"direct"}}
    [INFO  - 2019-02-09T15:05:16.008Z] SessionManagerReqHand - _postNewSessionCommand - New Session Created: 1b791e00-2c7c-11e9-9e77-ef7d90721101
    Feb 09, 2019 8:35:16 PM org.openqa.selenium.remote.ProtocolHandshake createSession
    INFO: Detected dialect: OSS
    Google
    [INFO  - 2019-02-09T15:05:20.866Z] ShutdownReqHand - _handle - About to shutdown
    

Примечание : Согласно вашему комментарию, сайт доступен только vpn, егочастный сайт, поэтому соответствующий код был протестирован с https://www.google.co.in

...