Questions tagged [selenium-side-runner]

21 questions
1
vote
1 answer

How to run Selenium sind runner in GitLabCI?

I'm currently evaluating Selenium in combination with GitLab CI as a testing tool for our website. This is my current .gitlab-ci.yml: variables: GIT_STRATEGY: clone GIT_DEPTH: 0 stages: - tests test: stage: tests image:…
1
vote
0 answers

Selenium Side Runner - preview of test / steps

I'm just getting started with automated tests, I've started using Selenium IDE. I run the tests via the Selenium Side Runner, the tests execute correctly, I can see if the test passes or fails, however a browser window opens but I can't see the…
1
vote
0 answers

Does anyone know how to execute a Selenium test file (.side) in Azure DevOps release pipeline? I'm using command line

*Sorry for my ignorance. I'm using selenium-side-runner and I'm targeting the W: drive on the target server where the website is being deployed to and that also hosts the test file (.side). I just manually added the file to the…
jaypman
  • 167
  • 2
  • 11
1
vote
0 answers

selenium-side-runner does not run Selenium IDE script

We are recording test scripts with Selenium IDE on a salesforce website without lightning. Tests run fine in selenium IDE but when we try using selenium side runner it fails. It cannot locate element by linkText.
Sridevi
  • 11
  • 1
1
vote
0 answers

Can I invoke multiple instances of Selenium side runner?

I'm trying to see if I can instantiate multiple instances of Selenium Side Runner and run different side projects in each instance.
1
vote
1 answer

command-line-runner selenium EACCES: permission denied, mkdir

I using docker-compose in ubuntu container with Dockerfile I install RUN npm install -g selenium-side-runner Then i run try run from www-data user selenium-side-runner --output-directory /tmp /application/src/www.opendi.co.uk.side --server…
Developer
  • 2,731
  • 2
  • 41
  • 71
1
vote
1 answer

selenium-side-runner RegEx returning NULL

Running a test to extract a verification code from text, executing in Selenium IDE it returns the code but when executing in selenium-side-runner I receive either d,d,d or null, have a look at the screen shots below and from cli strings…
1
vote
1 answer

How to add cookie to Selenium IDE test running in grid via selenium-side-runner for Zalenium messages

I've recorded a test using Selenium IDE and am submitting the generated .side file to selenium-side-runner to run on a Selenium Grid built using Zalenium. Is it possible to run a command that calls driver.manage().addCookie() from the test that was…
0
votes
1 answer

"WebDriverError: unknown error: Chrome failed to start: exited abnormally" when trying to run .side file on command line using selenium-side-runner

I used Selenium in my Chrome browser and recorded a series of steps. It works great in the browser. I want to get it to run automatically once per day, so I thought I'd try to get it to run from the command line so that I can put it in a crontab. I…
Anja
  • 11
  • 2
0
votes
0 answers

Close command in side file from SeleniumIDE makes Jenkins job infinite while running with selenium-side-runner

My Problem I'm having an issue while trying to execute a .side file using selenium-side-runner in a Jenkins job. Here's the line that I use in a "Execute Windows batch command" step in my Jenkins job : selenium-side-runner…
0
votes
0 answers

selenium-side-runner doesn't execute .side file with user profile indicated

My aim was to start Chrome with selenium-side-runner, and in profile of my selection. Opening 'Default' profile i m using this command for doing but it not opening my Default profile it is opening differt profile without login profile opening. How…
0
votes
0 answers

User Session already opened Issue Because Of this i cannot run tests

I have multiple test Suite contains multiple tests inside it. Please see the structure of my testsuite below. PracticeTestSuiteOne Test1 Test2 Test3 Test4 Test5 Test6 If i run PracticeTestSuiteOne in command line runner.It started with Test1…
0
votes
0 answers

Unable to maximize window manually or have fullscreen mode in selenium-side-runner

I've been trying through either sending the key combination {Fn} +{F11} or {F11} alone in order to maximize window through the steps which seem to not affect side-runner's window behavior at all. Changing window size is not working as well. Cmd…
0
votes
0 answers

jscript pop up error when executing selenium-side runner code-800A03F6

I am trying to execute selenium script on grid using npm in visual studio: selenium-side-runner *.side -w 10 --server http://localhost:4444/wd/hub But I am getting the pop up error saying "Microsoft jscript compilation error" with code: 800A03F6. …
0
votes
1 answer

Selenium-side runner variable to output

Hello im using selenium side runner to get html table content into a variable using store text command then i print it with echo what i want is to save the table stored text to .txt file for now im using powershell with " > example.txt" parameter…
1
2