selenium tag

Selenium is an open source umbrella project for a range of tools and libraries aimed at supporting browser automation. It provides a playback tool for authoring functional tests across most modern web browsers, without the need to learn a test scripting language (Selenium IDE). It also provides a test domain-specific language (Selenese) to write tests in a number of popular programming languages, including JavaScript (Node.js), C#, Groovy, Java, Perl, PHP, Python, Ruby and Scala. Selenium runs on Windows, Linux, and macOS. It is open-source software released under the Apache License 2.0.

Reference: WIKIPEDIA

110 questions


1 answers
325 views
0
If you use selenium in c#, memory usage will increase rapidly.

I am using selenium in c#, but every time I run var html=driver.PageSource; in the code below, the memory used increases and quickly fills up.Within an hour, 4GB of memory is used and OutOfMemoryExcep...

2 years ago

1 answers
336 views
0
I want to get elements from selenium, but I can't choose the latter because there are two of them with the same name.

<a href=URL target=_blank class=button button-color-2>New membership registration</a><a class=button>Login </a>Here, driver.find_element_by_css_selector('.button').click()

2 years ago

1 answers
169 views
0
Yahoo Search Scraping Can't Get Only Ads

I'm currently learning scraping at Python 3 and I know it's a gray zone to scrape Yahoo searches when I've tried various sites, but when I tried it (I don't use anything), I couldn't get an ad, so I w...


1 answers
108 views
0
Understanding How to Run Selenium Using Python Scripts from HTML Buttons

You have created a script to log in to a specific site with Python+Selenium.I want to run this Python by pressing the button from the page I created with HTML using Brython, but it doesn't work.Withou...

2 years ago

1 answers
148 views
0
I want to clear up the code that has become too nested due to too many conditional branches.

In order to study Selenium, I am developing an instagram web automatic tool at Ruby.In the script for writing comments to posts, Comment input fieldPost buttonI'm writing the code to get the two…, but...


2 answers
100 views
0
How to get the current value of Selenium, Python 3, Combo Box

from selenium.webdriver import Chrome, ChromeOptionsfrom selenium.webdriver.common.keys import Keysfrom selenium.webdriver.support.ui import Select, WebDriverWaitfrom selenium.webdriver.support import...


1 answers
187 views
0
Error running browser=webdriver.Firefox() in Python

I am using Mac Python 3.6 import selenium and browser=webdriver.Firefox()I tried I'm in trouble because I can't make it.(Error statements are as follows) I think there is no problem with the geckodriv...


1 answers
95 views
0
I want to test with selenium webdriver on yesod

I would like to test with selenium webdriver on yesod.The following tests worked.it webdriver load check $do title<-liftIO$runSession(def::WDConfig)$do openPage https://google.co.jp getTitle asse...

2 years ago

2 answers
95 views
0
Disable javascript in python selenium

I set the following settings on the webdriver to disable javascript when starting Firefox, but the settings do not take effect. from selenium import webdriverprofile=webdriver.FirefoxProfile()profile....

2 years ago

1 answers
86 views
0
Error scraping with selenium (Firefox) in python

I'm scraping with selenium (Firefox) in python.I'm having trouble accessing the https page because I got an error.You can access the http page.If anyone knows the solution, please let me know.Using Fi...

2 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.