TypeError: driver.isElementPresent is not a function

前端 未结 2 1190
温柔的废话
温柔的废话 2021-01-05 08:06

I am attempting to write a node function that logs into a website and am having trouble getting it to work. I am trying to wait for the page to load using the isElem

2条回答
  •  遥遥无期
    2021-01-05 08:41

    Make sure that all of the dependencies like Selenium and the browser driver are installed and working using a very minimal example.

    Then you can check what functions are on the driver object with console.log(util.inspect(driver));

    If your dependencies are set up, it may be that the API changed slightly. The current example here https://www.npmjs.com/package/selenium-webdriver uses until. You may want to try something closer to that example first.

提交回复
热议问题