Giter VIP home page Giter VIP logo

Comments (1)

sushant98905 avatar sushant98905 commented on August 27, 2024

This is the class am working with :

public class gifmaker {
private static String userName = "testing" ;
private static String password = "Twting" ;
public static void main(String[] args) throws Exception
{
WebDriver driver ;
DesiredCapabilities capabilities= DesiredCapabilities.chrome();

    driver =  new GifWebDriver(new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),capabilities));
    GifWebDriver gifDriver = (GifWebDriver) driver;

    gifDriver.getGifScreenshotWorker().setRootDir("E://Shared");
    gifDriver.getGifScreenshotWorker().setGeneratedGIFsFolderName("gifs");
    gifDriver.getGifScreenshotWorker().setScreenshotsFolderName("Screenshots");
    gifDriver.getGifScreenshotWorker().setLoopContinuously(true);
    
    gifDriver.get("https://news.ycombinator.com/login?goto=news");

   
    gifDriver.findElement(By.xpath("//input[@name='acct']")).sendKeys(userName);
    gifDriver.findElement(By.xpath("//input[@type='password']")).sendKeys(password);
   
    gifDriver.findElement(By.xpath("//input[@value='login']")).click();
   
    gifDriver.findElement(By.xpath("/html/body/a")).click();
    

    gifDriver.findElement(By.xpath("/html/body/form/input[4]")).click();
    if(gifDriver.getCurrentUrl().equals("https://news.ycombinator.com/login")){
        System.out.println("Incorrect credentials");
    }else{
        System.out.println("Successfuly logged in");
    }

    gifDriver.quit();
}

}

Instead of WebDriver driver ; on line 6 i want to use RemoteWebDriver driver. It is throwing error.

from gif-webdriver.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.