Search found 8 matches

by boton
04 Jan 2022, 14:17
Forum: About This Community
Topic: Unable to Join Discord
Replies: 5
Views: 7449

Unable to Join Discord

Hi there,

I'm unable to join the discord channel for something. When I click on the invite link it will pop up and ask me to join the server but then it will give an error message saying "Unable to Accept Invite"
by boton
20 Jun 2021, 13:29
Forum: Ask for Help (v1)
Topic: Triggering Events - IE
Replies: 0
Views: 328

Triggering Events - IE

I am trying to automate the login process for this website but having troubles implementing it. My current method is focusing on the element then sending pasting the username then tab to the password input and then pasting the password. This would require the window to be active at all times. I have...
by boton
08 Jun 2021, 18:28
Forum: Ask for Help (v1)
Topic: IE - Waiting for element
Replies: 2
Views: 196

Re: IE - Waiting for element

How would I implement it with a loop? I'm thinking using a while loop and then after finding it exit out of the loop. Would the below implementation work, just wondering with the catch e, are we able to jump back to the code and restart? while(elementFound != True){ try(wb.document.getElementsByTagN...
by boton
08 Jun 2021, 15:35
Forum: Ask for Help (v1)
Topic: IE - Waiting for element
Replies: 2
Views: 196

IE - Waiting for element

Was wondering what would the most efficient way to check for element existing on a webpage. Currently I am loading the webpage and then using the sleep command to wait for the page to fully load so it can run the next line of code without throwing errors. sleep, 12000 if (wb.document.getElementsByTa...
by boton
02 Apr 2020, 12:18
Forum: Ask for Help (v1)
Topic: Using variable inside function
Replies: 3
Views: 538

Re: Using variable inside function

<select tabindex="0" id="option123-field" aria-describedby="option123-messages"><option class="ui-option" id="option1955" value="">Choose an account</option> <option class="ui-option" id="option111" value="abc123">Chequing </option> <option class="ui-option" id="option222" value="abc456">Savings</o...
by boton
31 Mar 2020, 12:46
Forum: Ask for Help (v1)
Topic: Using variable inside function
Replies: 3
Views: 538

Using variable inside function

target := wb.document.querySelector("SELECT[id=""option123-field""]") target.value := "123456" event := wb.document.createEvent("Event") event.initEvent("change", true, true) target.dispatchEvent(event) If I hard code this and run the script it will be run perfectly but time to time the "option123-...
by boton
22 Oct 2019, 15:06
Forum: Ask for Help (v1)
Topic: How to fire event ng-change
Replies: 0
Views: 493

How to fire event ng-change

Currently trying to build a script to login but after changing the username and password and clicking login the website doesn't recognize that I changed the values. After some more reading it looks like I have to fire events so the website recognizes it. I inspected the website and found this code a...
by boton
13 Oct 2019, 22:54
Forum: Ask for Help (v1)
Topic: Website doesn't recognize login
Replies: 1
Views: 445

Website doesn't recognize login

I have used this successfully to login to other websites but for this one particular website I'm working on doesn't recognize that there is a username and password even though the code below gives the login information. wb.document.getElementByID("username100").Value := "username@gmail.com" wb.docum...

Go to advanced search