Questions tagged [browser-automation]

With browser automation a web browser can be instructed to repeat the same, possibly long task automatically or at will. In daily use browser automation can be used to fill forms, extract data from web pages, or provide authentication to a service. Browser automation is often used for automating testing of web applications. The same tests can be repeated after each change and in different browsers to verify correct behavior.

1104 questions
-2
votes
2 answers

Imacro for changing frame

I am trying to record a macro for auto posting on a website but problem is that one text field is changing its frame id every time when the macro tries to post, so it is not possible for me to automate the process.
user1973007
  • 1
  • 1
  • 1
-3
votes
2 answers

Cannot run program "C:\chromedriver.exe" (in directory "."): CreateProcess error=5, Access is denied)

My automation framework was running all fine till today. Just suddenly started getting this exception today. org.openqa.selenium.os.OsProcess checkForError SEVERE: org.apache.commons.exec.ExecuteException: Execution failed (Exit value: -559038737.…
-3
votes
2 answers

How to automatize this process?

I need a automatization script for a facebook. Im thinking how i can do this and in which program.. I was thinking about imacros but i don't think that imacros can open new tabs etc. I don't have any experience with programming so i need a easy…
-3
votes
1 answer

Alternative to Selenium scripts to download web data

I have to extract web data every day,to automate it I am using selenium recording script if i run recording script it will automatically download data based on my recording.Now i want alternative to do this task which has to do changes the dates…
-3
votes
1 answer

Repeating code N times selenium WD in Java

public WebDriver Loopthisstuff (Webdriver driver, int X) { additem.click(); WebElement answerX = driver.findElement(By.id("item_rowX_txt")); answerX.sendKeys("ITEM NR X"); } I am kinda new to coding,I am looking for a method to loop this…
-3
votes
1 answer

How I can find the method(GET and POST) in a link Using Selenium web driver?

I have to search all the POST and GET in my project. Suppose I enter a link and Login to the system. The Web driver should searches all the Get and Post in that page.
-4
votes
3 answers

cant find the element using classname in selenium java

I'am using selenium framework to test my own website. Im trying to click on specific icon which using anchor tag. I have java selenium code to click but couldn't click. Tried many xpath, css selectors, class name and names. but didn't worked. But…
-4
votes
1 answer

How do I get try and catch to work in my code?

Goal: When calling on 'initializeDriver', I don't want to have to keep throwing an IOexception in another class. How do I properly implement a "try" and "catch" to my code? here is my attempt, however, it's not working correctly. I have tried…
-4
votes
1 answer

How to Solve Nullpointer exception in TestNG with dependsOnGroups

I am planning to implement dependsOnGroups and Groups concept of testNG in my POM selenium framework. So I have created a POC with simple code and found nullpointer exception while run. Code: public class TestNGDependsOnMethodsExample…
Dhaval Atri
  • 201
  • 2
  • 6
  • 15
1 2 3
73
74