Selenium IDE stuck in getting variable value - selenium-ide

I add a script to selenium IDE. It checks and unchecks checkboxes and press a button. The issue is that it fails on the step 7 when try to get id value. If I remove step 6, it works. Why it fails with step 6.
script screenshot

Related

Cucumber step now not being found when using a choice of words in step

I have the following in a step "Given('I am logged in/as {string}')". This works and the test passes using either of the options in or as. It is however being flagged with the "Unable to find step for" error.
Previously no error was being displayed for this but has all of a sudden appeared. I am using cucumber in a wdio project and have not made any changes in this area in a while.

Cannot export Test case in Selenium IDE

I am trying to export a Test Case in Selenium IDE (in JUnit format), but everytime I am getting the same error:Test '001_PROVISIONALQC2657CONGCSourceCP400600HFA' has a problem: Invalid command ''
Even if I set all the lines inside the script as comments I am still unable to export it.
The problem occured because of the comments added to the script, and also because of a Close command for the URL that was opened on the first place. After removing these lines the export took place successfully.
Save project and reopen. This did the trick.

How can I pass a fail test in Selenium IDE?

I have a little problem with Selenium IDE. When I open an website and it fails because of timeout, Selenium won't run the next tests where I created a while loop so it will always refresh the webpage if it's not loaded.
My question is, how can make Selenium pass on the next command if the "open" command fails for timeout. Or please suggest any other workaround in case the page is loading continuously .
Thanks, Alex

I got an error "[error] Element id=ui-id-7 not found" while running my script using Selenium IDE

[error] Element id=ui-id-7 not found- Selenium IDE - I opened career builder site and started searching for QA Analyst jobs, but while trying to run, i got the error, can somebody help me?
You recorded your script wrong.
After your open url on selenium, add a function called verifyTextPresent and set a value "QA Analyst jbos".
It'll work.

Selenium IDE open command

I am creating automation tests using selenium IDE.
I want to navigate to an url using the open command, And then click on a button on the page , so that I can edit the Record.
After Navigating to the url(hashed url) using the open command.
The Execution stops at this command.
The base url is http://test.com/ and
the url to navigate is http://test.com/#quotes/1
Most probably in the time of the question it touches this problem:
https://code.google.com/p/selenium/issues/detail?id=5165
and there is an workaround:
Command = storeEval
Target = window.location.hash='events/5000/participants/7011'
This would be no solution for current problems with timeout, as Selenium-IDE is already in 2.xx version.