• *Article !deas
  • About Us
  • Advertise
  • Contact Us
  • Donate
  • Photo Gallery
  • Submit A Bug
  • Supporters
  • Ambassadors
Testing Circus
Testing Circus

  • Download Magazine
  • Popular Features
    • A Fake Tester’s Diary
    • Interview with Testers
    • Test News
    • Ajoy’s Editorials
    • Testers To Follow on Twitter
    • Books by WoBo
    • Testing Videos
  • Articles
  • Write for Us
  • Subscribe (Free)
  • Testing Jobs
    • Software Testing Jobs
    • Submit Testing Jobs
    • Jobs I Posted
  • Testing Trapeze
    • What is Testing Trapeze?
    • Download Testing Trapeze

Sumukh

Sumukh2024-03-15T12:24:06-04:00
Profile picture of Sumukh

@sumukha

Active 11 years, 10 months ago
  • Activity
  • Profile
  • Friends 11
  • Groups 4
  • Forums
  • Personal
  • Mentions
  • Favorites
  • Friends
  • Groups
  • Profile picture of Sumukh

    Sumukh and Profile picture of Ajoy Kumar SinghaAjoy Kumar Singha are now friends 11 years, 10 months ago

    Ajoy Kumar Singha

    @ajoykumarsingha

    View Profile
  • Profile picture of Sumukh

    Sumukh posted an update in the group Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    http://blog.reallysimplethoughts.com/2013/02/18/webdriver-playback-in-selenium-ide-is-here/

  • Profile picture of Sumukh

    Sumukh started the topic Handling Hidden Pop-up. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    Ex:URL:: http://www.yatra.com
    driver.get(“http://www.yatra.com/”);

    Actions action=new Actions(driver);

    //Moving cursor onto webelemnt to open hidden popup. action.moveToElement(driver.findElement(By.xpath(“//a[@id=’htls_dwnarw_yttkd’]”))).perform();

    //Other methods which can be…[Read more]

  • Profile picture of Sumukh

    Sumukh started the topic Scroll down or Drag & Drop Browser. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    Actions action=new Actions(driver);

    WebElement source = driver.findElement(By.id(“”));
    WebElement target = driver.findElement(By.id(“”));

    action.dragAndDrop(source,target).perform();

  • Profile picture of Sumukh

    Sumukh started the topic Working with FRAMES. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    //Handling using locator of webelement.
    driver.switchTo().frame(driver.findElement(By.id(“”)));

    //Handling using INTEGER value.
    driver.switchTo().frame(1);

    //Handling using STRING value.
    driver.switchTo().frame(“frame1”);

  • Profile picture of Sumukh

    Sumukh started the topic Handling Browser navigation. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    //Traverse forward.
    driver.navigate().forward();

    //Refreshing the screen.
    driver.navigate().refresh();

    //Traverse Back.
    driver.navigate().back();

    //Move to another URL
    driver.navigate().to(“”);

    //Getting Current URL.
    driver.getCurrentUrl();

  • Profile picture of Sumukh

    Sumukh started the topic Handling Alert & Confirmation Pop-up: in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    //Accepting the Pop-up.
    driver.switchTo().alert().accept();

    //Getting text from Pop-up displayed.
    driver.switchTo().alert().getText();

    //Canceling the Pop-up.
    driver.switchTo().alert().dismiss();

  • Profile picture of Sumukh

    Sumukh started the topic Working with Drop down or List box. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    Select select=new Select(driver.findElement(By.id(“List ID”)));
    select.selectByIndex(1);
    select.selectByValue(“value”);
    select.selectByVisibleText(“Text”);
    select.deselectAll();
    select.deselectByIndex(1);
    select.deselectByValue(“value”);
    select.deselectByVisibleText(“text”);
    //select.getAllSelectedOptions();

  • Profile picture of Sumukh

    Sumukh started the topic Synchronization in Selenium. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    //Implicit way of synchronization:
    driver.manage().timeouts().implicitlyWait(20,TimeUnit.SECONDS);

    //Explicit way of synchronization:
    WebDriverWait wait=new WebDriverWait(driver, 20); wait.until(ExpectedConditions.visibilityOf(driver.findElement(By.id(“”))));

    //Dumb way: NOTE::Value should be in Milli seconds
    Thread.sleep(3000);

  • Profile picture of Sumukh

    Sumukh started the topic capturing snapshot. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    public static void get_screen_shot(String imagename)
    {
    String image_location;

    image_location=”D:// Folder location”+imagename+”.jpeg”;
    File image = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);

    try
    { FileUtils.copyFile(image, new File(image_location));}
    catch (Exception e)
    { Reporter.log(“error while c…[Read more]

  • Profile picture of Sumukh

    Sumukh started the topic Entering value into Excel sheet. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    public static void get_value_into_excel(String filepath,String sheet, int rownum, int cellnum, String value)
    {

    try
    {
    FileInputStream fis=new FileInputStream(filepath);
    Workbook wb = WorkbookFactory.create(fis);
    Sheet s = wb.getSheet(sheet);
    s.createRow(rownum).createCell(cellnum).setCellValue(value);

    FileOutputStream…[Read more]

  • Profile picture of Sumukh

    Sumukh started the topic Geting value from Excel sheet. in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    public static String get_value_from_excel(String filepath,String sheet, int rownum, int cellnum)
    {
    String value;
    try
    {
    FileInputStream fis=new FileInputStream(filepath);
    Workbook wb = WorkbookFactory.create(fis);
    Sheet s = wb.getSheet(sheet);
    value=s.getRow(rownum).getCell(cellnum).getStringCellValue();
    return value;…[Read more]

  • Profile picture of Sumukh

    Sumukh started the topic Using selenium webdriver in Internet Explorer ! in the forum Group logo of Selenium ScientistsSelenium Scientists 11 years, 11 months ago

    System.setProperty(“webdriver.ie.driver”,”D:\IEDriverServer.exe”);

    DesiredCapabilities capab =DesiredCapabilities.internetExplorer();

    capab.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS,true);
    WebDriver driver =newInternetExplorerDriver(capab);`

  • Profile picture of Sumukh

    Sumukh posted a new activity comment 11 years, 11 months ago

    Might be problem with system configuration !

    View Conversation
  • Profile picture of Sumukh

    Sumukh and Profile picture of Andreas KleffelAndreas Kleffel are now friends 11 years, 11 months ago

    Andreas Kleffel

    @siri

    View Profile
  • Profile picture of Sumukh

    Sumukh started the topic Looking for JOB CHANGE ! in the forum Group logo of Testing JobsTesting Jobs 11 years, 11 months ago

    If there are any job opportunity for Selenium WebDriver automation testing then please do let me know.

    I have overall 3.9 year of experience.

     

    [email protected]

    +91 9036110388

     

  • Profile picture of Sumukh

    Sumukh and Profile picture of JayshreeJayshree are now friends 11 years, 11 months ago

    Jayshree

    @atesterbeing

    View Profile
  • Profile picture of Sumukh

    Sumukh and Profile picture of Debojit GogoiDebojit Gogoi are now friends 11 years, 12 months ago

    Debojit Gogoi

    @debojit

    View Profile
  • Profile picture of Sumukh

    Sumukh and Profile picture of Jyothi RangaiahJyothi Rangaiah are now friends 12 years ago

    Jyothi Rangaiah

    @jyothi-rangaiah

    View Profile
  • Profile picture of Sumukh

    Sumukh and Profile picture of Monica MovvaMonica Movva are now friends 12 years ago

    Monica Movva

    @monica

    View Profile
  • Load More

Share this:

  • Tweet
  • Reddit
  • More
  • Share on Tumblr
  • Email
  • Print
  • Pocket

Search This Site

Community Login

Log In
Register Lost Password

Sponsored Ads

Sponsored Ad

Article Categories

  • 2010 Editions (3)
  • 2011 Editions (12)
  • 2012 Editions (12)
  • 2013 Editions (12)
  • 2014 Editions (12)
  • 2015 Editions (12)
  • A Fake Tester's Diary (30)
  • Ajoy's Editorials (33)
  • Articles (65)
  • Beyond Testing (7)
  • Default (1)
  • Interview with Testers (31)
  • Security Testing Tips (13)
  • Test News (8)
  • Tester Being Tested (3)
  • Testing Trapeze (12)
  • Tools & Tutorials (2)

Follow Us on Twitter

My Tweets

Popular Category Tags

2010 Editions 2011 Editions 2012 Editions 2013 Editions 2014 Editions 2015 Editions A Fake Tester's Diary Ajoy's Editorials Articles Beyond Testing Default Interview with Testers Security Testing Tips Tester Being Tested Testing Trapeze Test News Tools & Tutorials
Copyright ©2025. Testing Circus
  • Download Latest Edition
  • Register
  • Log In
  • Community FAQs & Help

Skip to toolbar
  • About WordPress
    • WordPress.org
    • Documentation
    • Learn WordPress
    • Support
    • Feedback
  • Log In